本文整理汇总了PHP中yii\base\Action类的典型用法代码示例。如果您正苦于以下问题:PHP Action类的具体用法?PHP Action怎么用?PHP Action使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Action类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isActive
/**
* Returns a value indicating whether the filer is active for the given action.
* @param \yii\base\Action $action the action being filtered
* @return boolean whether the filer is active for the given action.
*/
protected function isActive($action)
{
if ($action->getUniqueId() === Yii::$app->getErrorHandler()->errorAction) {
return false;
}
return parent::isActive($action);
}
示例2: matchActionAccess
/**
* check the permission, if we rewrite and controller, the controller id and module id is not changed
* @param \yii\base\Action $action
* @param \yii\web\User $user
* @param \yii\web\Request $request
* @return bool
*/
public function matchActionAccess($action, $user, $request)
{
if ($user->getIsGuest()) {
return false;
}
/** @var \core\auth\Module $authModule */
$authModule = \Yii::$app->getModule('core_auth');
foreach ($authModule->getAdmins() as $key => $admin) {
if ($user->getIdentity()->username == $admin['username']) {
return true;
}
}
if ($action->controller->module instanceof Application) {
$key = 'default' . '_' . $action->controller->id . '_' . $action->id;
} else {
$key = $action->getUniqueId();
$key = explode('/', $key);
array_shift($key);
$key = implode('_', $key);
}
$key = lcfirst(implode('', array_map(function ($k) {
return ucfirst($k);
}, explode('-', $key))));
return $user->can($key, $this->params);
}
示例3: init
public function init()
{
//csrf状态
Yii::$app->request->enableCsrfValidation = $this->csrf;
Yii::$app->request->enableCookieValidation = $this->csrf;
//当前目录
$this->currentPath = dirname(__FILE__);
return parent::init();
}
示例4: description
/**
* Returns description for method
* @return string
*/
public function description()
{
if (method_exists($this->action, 'description')) {
return $this->action->description();
}
return $this->docBlock ? $this->docBlock->getShortDescription() : '';
}
示例5: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
if (!empty($this->data)) {
$this->data = call_user_func($this->data);
}
}
示例6: init
public function init()
{
parent::init();
if (!$this->model) {
throw new InvalidParamException('model不能为null');
}
}
示例7: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
if (empty($this->callable)) {
throw new InvalidParamException('Param "callable" can not be empty.');
}
}
示例8: init
public function init()
{
//close csrf
Yii::$app->request->enableCsrfValidation = false;
//默认设置
// $this->php_path = dirname(__FILE__) . '/';
$this->php_path = $_SERVER['DOCUMENT_ROOT'] . '/';
$this->php_url = '/';
//根目录路径,可以指定绝对路径,比如 /var/www/attached/
$this->root_path = $this->php_path . 'upload/';
//根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/
$this->root_url = $this->php_url . 'upload/';
//图片扩展名
// $ext_arr = ['gif', 'jpg', 'jpeg', 'png', 'bmp'],
//文件保存目录路径
$this->save_path = $this->php_path . 'upload/';
//文件保存目录URL
$this->save_url = $this->php_url . 'upload/';
//定义允许上传的文件扩展名
// $ext_arr = array(
// 'image' => array('gif', 'jpg', 'jpeg', 'png', 'bmp'),
// 'flash' => array('swf', 'flv'),
// 'media' => array('swf', 'flv', 'mp3', 'wav', 'wma', 'wmv', 'mid', 'avi', 'mpg', 'asf', 'rm', 'rmvb'),
// 'file' => array('doc', 'docx', 'xls', 'xlsx', 'ppt', 'htm', 'html', 'txt', 'zip', 'rar', 'gz', 'bz2'),
// ),
//最大文件大小
$this->max_size = 1000000;
$this->save_path = realpath($this->save_path) . '/';
//load config file
parent::init();
}
示例9: init
/**
* @throws InvalidConfigException
*/
public function init()
{
parent::init();
if (!is_callable($this->outputFunction)) {
throw new InvalidConfigException('outputFunction must be callable');
}
}
示例10: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
if (empty($this->modelClass)) {
throw new InvalidConfigException('The "modelClass" property must be set.');
}
}
示例11: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
if ($this->modelClass == null) {
throw new InvalidConfigException('Param "modelClass" must be contain model name with namespace.');
}
}
示例12: init
/**
* @inheritdoc
* @throws InvalidConfigException
*/
public function init()
{
if (!isset($this->ownerLinkTable, $this->className)) {
throw new InvalidConfigException('"ownerLinkTable" and "className" attributes cannot be null');
}
parent::init();
}
示例13: init
/**
* @inheritdoc
* @throws \yii\base\InvalidConfigException
*/
public function init()
{
if ($this->modelClass === null) {
throw new InvalidConfigException('"modelClass" cannot be empty.');
}
parent::init();
}
示例14: init
/**
* @inheritdoc
* @throws InvalidConfigException
*/
public function init()
{
if (!isset($this->ownerRelation, $this->ownerTable, $this->searchClass, $this->view)) {
throw new InvalidConfigException('"searchClass", "ownerRelation", "ownerTable" and "view" attributes cannot be null');
}
parent::init();
}
示例15: beforeRun
/**
* @return bool
*/
public function beforeRun()
{
Yii::$app->view->title = 'Update Record';
Yii::$app->view->params['breadcrumbs'][] = ['label' => 'Review Errors', 'url' => ['review-errors', 'id' => Yii::$app->request->get('id')]];
Yii::$app->view->params['breadcrumbs'][] = Yii::$app->view->title;
return parent::beforeRun();
}