xepozz / yii-short
A set of shortcuts for the Yii framework
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/xepozz/yii-short
Requires
- php: ^8.1
Requires (Dev)
- httpsoft/http-message: ^1.1
- phpunit/phpunit: ^10.2
- psr/simple-cache: ^3.0
- vimeo/psalm: ^5.13
- yiisoft/access: ^1.1
- yiisoft/cache: ^3.0
- yiisoft/dummy-provider: ^1.0
- yiisoft/router: ^3.0
- yiisoft/router-fastroute: ^3.0
- yiisoft/test-support: ^3.0
- yiisoft/translator: ^3.0
- yiisoft/user: ^2.0
- yiisoft/validator: ^1.1
- yiisoft/view: ^8.0
- yiisoft/yii-view: ^6.0
Provides
This package is auto-updated.
Last update: 2023-07-29 13:08:07 UTC
README
Sets of helper functions for rapid development of Yii 3 applications.
About
The library provides a set of helper functions for rapid development of Yii 3 applications.
Installation
composer req xepozz/shortcut
Shortcuts
Table of contents
- container
- Accessing the PSR-11 container
- route
- Generating a route URL
- view
- Rendering a view file to a response object
- response
- Creating a response object
- redirect
- Creating a redirect response object
- alias
- Getting an alias
- aliases
- Getting multiple aliases at once
- translate
- Translating a message
- validate
- Validating a data
- log
- Logging a message with PSR-3 logger
- cache
- Accessing the PSR-6 cache
Functions
container(string $id, bool $optional = false): mixed
$idis a container id$optionalis a flag to returnnullif the$idis not found in the container
container(\App\MyService::class); // => \App\MyService instance container('not-exist'); // => throws \Psr\Container\NotFoundExceptionInterface container('not-exist', true); // => null
route(string $name, array $params = [], array $query = []): string
$nameis a route name$paramsis a route params$queryis a query params
route('site/index'); // => '/index' route('user/view', ['id' => 1]); // => '/user/1' route('site/index', [], ['page' => 2]); // => '/index?page=2'
view(string $view, array $params = [], null|string|object $controller = null): \Yiisoft\DataResponse\DataResponse
$viewis a view name$paramsis a view params$controlleris a controller instance or a path to views directory. Used to bind views to the specific directory.
view('site/index'); // => A response object with content of file '/views/site/index.php' view('site/index', ['page' => 2]); // => A response object with content of file '/views/site/index.php' and params ['page' => 2] view('index', ['page' => 2], new MyController()); // => A response object with content of file '/views/my/index.php' and params ['page' => 2] view('index', ['user' => $user], 'module/user'); // => A response object with content of file '/views/module/user/index.php' and params ['user' => $user] class SiteController { public function actionIndex() { return view('index', [], $this); // => A response object with content of file '/views/site/index.php' } }
response(int|null|string|array|StreamInterface $body = null, int $code = 200, string $status = 'OK', array $headers = []): \Psr\Http\Message\ResponseInterface
$bodyis a response body$codeis a response code$statusis a response status$headersis a response headers
response('Hello world'); // => A response object with body 'Hello world' response('Hello world', 201); // => A response object with body 'Hello world' and code 201 response('Hello world', 201, 'Created'); // => A response object with body 'Hello world', code 201 and status 'Created' response('Hello world', 201, 'Created', ['X-My-Header' => 'My value']); // => A response object with body 'Hello world', code 201, status 'Created' and header 'X-My-Header' with value 'My value' response(['message' => 'Hello world']); // => A response object with body '{"message":"Hello world"}' and header 'Content-Type' with value 'application/json'
redirect(string $name, array $parameters = [], array $query = [], int $code = Status::TEMPORARY_REDIRECT, bool $absolute = false): \Psr\Http\Message\ResponseInterface
$nameis a route name or an absolute url if$absoluteistrue$parametersis a route parameters. Used only if$absoluteisfalse$queryis a query parameters$codeis a response code$absoluteis a flag to generate absolute url, default isfalse
// Route name 'site/index' is bound to '/index' redirect('site/index'); // => A response object with code 307 and header 'Location' with value '/index' redirect('site/index', ['page' => 2]); // => A response object with code 307 and header 'Location' with value '/index/2' redirect('site/index', [], ['page' => 2]); // => A response object with code 307 and header 'Location' with value '/index?page=2' redirect('site/index', [], ['page' => 2], Status::PERMANENT_REDIRECT); // => A response object with code 308 and header 'Location' with value '/index?page=2' // Generating absolute url redirect('/path/to/redirect', [], ['page' => 2], Status::PERMANENT_REDIRECT, true); // => A response object with code 308 and header 'Location' with value 'http://localhost/path/to/redirect?page=2'
alias(string $path): string
$pathis an alias name
alias('@runtime'); // => '/path/to/runtime'
aliases(string ...$paths): array
$pathsis alias names
aliases('@runtime', '@webroot'); // => ['/path/to/runtime', '/path/to/webroot']
translate(string $message, array $params = [], string $category = 'app', string $language = null): string
$messageis a translation message$paramsis a translation params$categoryis a translation category$languageis a translation language
translate('main.hello'); // => 'Hello world' translate('error.message', ['message' => 'Something went wrong']); // => 'Error: "Something went wrong".' translate('error.message', ['message' => 'Something went wrong'], 'modules'); // => 'Error from a module: "Something went wrong".' translate('error.message', ['message' => 'Something went wrong'], 'modules', 'ru'); // => 'Ошибка из модуля: "Something went wrong".'
validate(mixed $data, callable|iterable|object|string|null $rules = null, ?ValidationContext $context = null): Result
$datais a data to validate$rulesis a validation rules$contextis a validation context
validate(
['name' => 'John'],
['name' => [new Required()]],
);
See more about validator rules in yiisoft/validator
log_message(string $level, string|stringable $message, array $context = []): void
$levelis a log level. Available levels:emergency,alert,critical,error,warning,notice,info,debug.- You can use
\Psr\Log\LogLevelconstants:\Psr\Log\LogLevel::EMERGENCY\Psr\Log\LogLevel::ALERT\Psr\Log\LogLevel::CRITICAL\Psr\Log\LogLevel::ERROR\Psr\Log\LogLevel::WARNING\Psr\Log\LogLevel::NOTICE\Psr\Log\LogLevel::INFO\Psr\Log\LogLevel::DEBUG.
- You can use
$messageis a log message$contextis a log context
Also, you can use already level-specific functions:
log_emergency(string|Stringable $message, array $context = []): voidlog_alert(string|Stringable $message, array $context = []): voidlog_critical(string|Stringable $message, array $context = []): voidlog_error(string|Stringable $message, array $context = []): voidlog_warning(string|Stringable $message, array $context = []): voidlog_notice(string|Stringable $message, array $context = []): voidlog_info(string|Stringable $message, array $context = []): voidlog_debug(string|Stringable $message, array $context = []): void
log_message('info', 'Some info message'); log_message('error', 'Could not authenticate user with ID {user_id}', ['user_id' => $userId]); log_info('Info message'); log_error('Error message'); log_warning('Warning message'); log_notice('Notice message'); log_debug('Debug message'); log_critical('Critical message'); log_alert('Alert message'); log_emergency('Emergency message');
cache(string|int|Stringable|array $key, mixed $value = null, int|DateInterval|null $ttl = null): mixed
$keyis a cache key$valueis a cache value$ttlis a cache TTL
cache('key', 'value'); // returns "value" and sets cache with key "key" if it does not exist cache('key', 'value', 3600); // sets cache with key "key" and value "value" for 1 hour cache('key', 'value', new DateInterval('PT1H')); // also TTL can be an instance of DateInterval cache('key', fn () => 'value'); // $value can be a closure. It will be executed only if cache with key "key" does not exist cache(new StringableClass('key'), fn () => 'value'); // $key can be an instance of Stringable cache(12345, fn () => 'value'); // $key can be an integer cache(['key' => 'value', '!@#$%^&*()_+`' => '_)(*&^%$#@!~`'], fn () => 'value'); // $key can be an array. It will be serialized to a JSON and the following characters will be replaced to "_": {}()/\@:
Looking for more modules?
- Unique ID - Allows you to track the unique user in the application.
- Request ID - A simple library to generate both unique request and response IDs for tracing purposes.
- AB - A simple library to enable A/B testing based on a set of rules.
- Feature Flag - A simple library to enable/disable features based on a set of rules.