本文整理汇总了PHP中yii\base\Event::on方法的典型用法代码示例。如果您正苦于以下问题:PHP Event::on方法的具体用法?PHP Event::on怎么用?PHP Event::on使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类yii\base\Event
的用法示例。
在下文中一共展示了Event::on方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
public function init()
{
parent::init();
if (is_null($this->attribute)) {
throw new Exception("Module \"attribute\" attribute must be set");
}
if (is_null($this->latitudeAttribute)) {
throw new Exception("Module \"latitudeAttribute\" attribute must be set");
}
if (is_null($this->longitudeAttribute)) {
throw new Exception("Module \"longitudeAttribute\" attribute must be set");
}
if (is_null($this->jsonAttribute)) {
throw new Exception("Module \"jsonAttribute\" attribute must be set");
}
if (is_null($this->class)) {
$this->class = __NAMESPACE__ . '\\models\\Locations';
}
$location = new $this->class();
$location->setAttributes(['destinationAttribute' => $this->attribute, 'latitudeAttribute' => $this->latitudeAttribute, 'longitudeAttribute' => $this->longitudeAttribute, 'jsonAttribute' => $this->jsonAttribute]);
$this->location = $location;
Event::on(Locations::className(), Locations::EVENT_ADD_LOCATION, [Locations::className(), 'addLocation']);
Event::on(Locations::className(), Locations::EVENT_GET_LOCATION, [Locations::className(), 'getLocation']);
return true;
}
示例2: bootstrap
public function bootstrap($app)
{
/** @var Module $module */
if ($app->hasModule('cms') && ($module = $app->getModule('cms')) instanceof Module) {
$classMap = array_merge($this->classMap, $module->classMap);
foreach (array_keys($this->classMap) as $item) {
$className = '\\nullref\\cms\\models\\' . $item;
$cmsClass = $className::className();
$definition = $classMap[$item];
Yii::$container->set($cmsClass, $definition);
}
if ($app instanceof WebApplication) {
$prefix = $app->getModule('cms')->urlPrefix;
$app->urlManager->addRules([Yii::createObject(['class' => PageUrlRule::className(), 'pattern' => $prefix . '/<route:[_a-zA-Z0-9-/]+>'])]);
if (!isset($app->controllerMap['elfinder-backend'])) {
$app->controllerMap['elfinder-backend'] = ['class' => 'mihaildev\\elfinder\\Controller', 'user' => 'admin', 'access' => ['@'], 'disabledCommands' => ['netmount'], 'roots' => [['path' => 'uploads', 'name' => 'Uploads']]];
}
$app->i18n->translations['cms*'] = ['class' => PhpMessageSource::className(), 'basePath' => '@nullref/cms/messages'];
}
if (YII_ENV_DEV) {
Event::on(Gii::className(), Gii::EVENT_BEFORE_ACTION, function (Event $event) {
/** @var Gii $gii */
$gii = $event->sender;
$gii->generators['block-migration-generator'] = ['class' => 'nullref\\cms\\generators\\block_migration\\Generator'];
$gii->generators['block-generator'] = ['class' => 'nullref\\cms\\generators\\block\\Generator'];
$gii->generators['pages-migration-generator'] = ['class' => 'nullref\\cms\\generators\\pages_migration\\Generator'];
});
}
}
}
示例3: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
Event::on(BaseMailer::className(), BaseMailer::EVENT_AFTER_SEND, function ($event) {
AuditMail::record($event);
});
}
示例4: init
/**
* Init component
*/
public function init()
{
parent::init();
if (is_string($this->listeners)) {
$listeners = (include_once Yii::getAlias($this->listeners) . '.php');
} elseif (is_array($this->listeners)) {
$listeners = $this->listeners;
} else {
throw new Exception('Create ' . $this->listeners . '.php file or set array, it is requered! $listeners have to get array!');
}
foreach ($listeners as $key => $listener) {
foreach ($listener as $objects) {
if (true === is_array($objects) && false === is_object($objects[0]) && false === class_exists($objects[0])) {
$objects = function () use($objects) {
$component = eval('return ' . $objects[0] . ';');
call_user_func_array(array($component, $objects[1]), func_get_args());
};
}
if (!is_array($key)) {
//Global event
Yii::$app->on($key, $objects);
} else {
Event::on($key[0], $key[1], $objects);
}
}
}
}
示例5: init
public function init()
{
parent::init();
Event::on(BaseStorage::className(), BaseStorage::EVENT_READFILE, function ($e) {
$this->addItem($e);
});
}
示例6: init
public function init()
{
$subscribers = $this->getSubscribers();
foreach ($subscribers as $subscriberClassName) {
/** @var SubscriberInterface $subscriber */
$subscriber = new $subscriberClassName();
$events = $subscriber->getSubscribedEvents();
foreach ($events as $event => $callback) {
if (is_array($callback)) {
list($callback, $layer) = $callback;
}
if (isset($layer)) {
if (is_array($layer)) {
//in future We can declare Event as key of array if nessesary
Event::on($layer[0], $event, [$subscriber, $callback]);
} else {
\Yii::$app->{$layer}->on($event, [$subscriber, $callback]);
}
} else {
\Yii::$app->on($event, [$subscriber, $callback]);
}
unset($layer);
}
}
}
示例7: events
public function events()
{
// 查询事件
// Event::on(
// ActiveRecord::className(),
// ActiveRecord::EVENT_AFTER_FIND, [$this, 'afterFind']
// );
// 写入事件
Event::on(ActiveRecord::className(), ActiveRecord::EVENT_AFTER_INSERT, [$this, 'afterInsert']);
// 更新事件
Event::on(ActiveRecord::className(), ActiveRecord::EVENT_AFTER_UPDATE, [$this, 'afterUpdate']);
// 删除事件
Event::on(ActiveRecord::className(), ActiveRecord::EVENT_AFTER_DELETE, [$this, 'afterDelete']);
// 后台登录事件
Event::on(\service\models\LoginForm::className(), \service\models\LoginForm::EVENT_LOGIN_AFTER, [$this, 'afterBackendLogin']);
// 后台退出事件
Event::on(\service\models\LoginForm::className(), \service\models\LoginForm::EVENT_LOGOUT_BEFORE, [$this, 'beforeBackendLogout']);
return [];
// return [
// ActiveRecord::EVENT_AFTER_FIND => 'afterFind',
// ActiveRecord::EVENT_AFTER_INSERT => 'afterInsert',
// ActiveRecord::EVENT_AFTER_UPDATE => 'afterUpdate',
// ActiveRecord::EVENT_AFTER_DELETE => 'afterDelete',
// \backend\models\LoginForm::EVENT_LOGIN_AFTER => 'afterBackendLogin',
// \backend\models\LoginForm::EVENT_LOGOUT_AFTER => 'afterBackendLogout',
// ];
}
示例8: build
public function build()
{
\yii\base\Event::on(\denoll\filekit\Storage::className(), \denoll\filekit\Storage::EVENT_BEFORE_SAVE, function ($event) {
/** @var \denoll\filekit\Storage $storage */
$storage = $event->sender;
if (!$storage->getFilesystem()->has('.dirindex')) {
$storage->getFilesystem()->write('.dirindex', 1);
$dirindex = 1;
} else {
$dirindex = $storage->getFilesystem()->read('.dirindex');
}
if ($storage->maxDirFiles !== -1) {
if ($storage->getFilesystem()->has($dirindex)) {
$filesCount = count($storage->getFilesystem()->listContents($dirindex));
if ($filesCount > $storage->maxDirFiles) {
$dirindex++;
$storage->getFilesystem()->createDir($dirindex);
}
} else {
$storage->getFilesystem()->createDir($dirindex);
}
}
});
$client = new \Sabre\DAV\Client(['baseUri' => 'https://webdav.yandex.ru']);
$client->addCurlSetting(CURLOPT_SSL_VERIFYPEER, false);
$client->addCurlSetting(CURLOPT_HTTPHEADER, ['Authorization: OAuth TOKENTOKENTOKEN', 'Accept: */*', 'Host: webdav.yandex.ru']);
$adapter = new WebDAVAdapter($client, '/');
$flysystem = new Filesystem($adapter);
if (!$flysystem->has($this->pathPrefix)) {
$flysystem->createDir($this->pathPrefix);
}
$adapter->setPathPrefix($this->pathPrefix);
return $flysystem;
}
示例9: init
public function init()
{
parent::init();
Event::on(Controller::className(), Controller::EVENT_BEFORE_ACTION, function ($event) {
$event->sender->view->params['pagelabel'] = 'User Management System';
});
}
示例10: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
$this->mailer = Instance::ensure($this->mailer, 'im\\users\\components\\UserMailerInterface');
Event::on(User::className(), User::EVENT_BEFORE_REGISTRATION, [$this, 'beforeUserRegistration']);
Event::on(User::className(), User::EVENT_AFTER_REGISTRATION, [$this, 'afterUserRegistration']);
}
示例11: init
public function init()
{
parent::init();
Event::on(View::className(), View::EVENT_BEFORE_RENDER, function (ViewEvent $event) {
$this->_viewFiles[] = $event->sender->getViewFile();
});
}
示例12: bootstrap
public function bootstrap($app)
{
Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_TRANCINSERT, function ($event) {
TcEventAction::EventActionAfterTrancInsert($event);
});
Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_TRANCUPDATE, function ($event) {
TcEventAction::EventActionAfterTrancUpdate($event);
});
Event::on(ActiveRecord::classname(), BaseActiveRecord::EVENT_AFTER_INSERT, function ($event) {
TcEventAction::EventActionCreate($event);
});
Event::on(ActiveRecord::classname(), BaseActiveRecord::EVENT_AFTER_UPDATE, function ($event) {
TcEventAction::EventActionUpdate($event);
});
Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_BEFORE_PUBLISH, function ($event) {
TcEventAction::EventActionBeforePublish($event);
});
Event::on(ActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_PUBLISH, function ($event) {
TcEventAction::EventActionAfterPublish($event);
});
Event::on(AppActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_SOFTDELETE, function ($event) {
TcEventAction::EventActionSoftDelete($event);
});
Event::on(AppActiveRecord::classname(), AppActiveRecord::EVENT_AFTER_UNPUBLISH, function ($event) {
TcEventAction::EventActionUnpublish($event);
});
}
示例13: init
public function init()
{
$command = null;
if ($this->onInsert) {
Event::on(ActiveRecord::className(), ActiveRecord::EVENT_BEFORE_INSERT, function ($event) {
$db = $event->sender->db;
$values = $event->sender->getDirtyAttributes();
$command = $db->createCommand()->insert($event->sender->tableName(), $values)->rawSql;
});
}
if ($this->onUpdate) {
Event::on(ActiveRecord::className(), ActiveRecord::EVENT_BEFORE_UPDATE, function ($event) {
$db = $event->sender->db;
$values = $event->sender->getDirtyAttributes();
$condition = $event->sender->getOldPrimaryKey(true);
$command = $db->createCommand()->update($event->sender->tableName(), $values, $condition)->rawSql;
});
}
if ($this->onDelete) {
Event::on(ActiveRecord::className(), ActiveRecord::EVENT_BEFORE_DELETE, function ($event) {
$db = $event->sender->db;
$values = $event->sender->getDirtyAttributes();
$condition = $event->sender->getOldPrimaryKey(true);
$command = $db->createCommand()->delete($event->sender->tableName(), $condition)->rawSql;
});
}
Log::save($command);
return parent::init();
}
示例14: bootstrap
/**
* (non-PHPdoc)
*
* @see \yii\base\BootstrapInterface::bootstrap()
* @param $app \yii\web\Application
*/
public function bootstrap($app)
{
session_name('session-id');
/* @var $cfg \frontend\components\Configuration */
$cfg = $app->mycfg;
date_default_timezone_set($cfg->system->timezone);
$app->language = $cfg->system->language;
// inject into app
// TODO: mariadb, postgres, cubrid, oracle, mssql
try {
switch ($cfg->database->format) {
case 'mysql':
$app->db->dsn = "mysql:host={$cfg->database->host};dbname={$cfg->database->dbname}";
$app->db->username = $cfg->database->login;
$app->db->password = $cfg->database->password;
break;
case 'sqlite':
$app->db->dsn = "sqlite:{$cfg->database->filename}";
break;
}
if ($cfg->getVersion() != $cfg->system->version) {
//redirect to migration, as user config doesnot contain matching version
Event::on('app\\components\\Controller', Controller::EVENT_BEFORE_ACTION, function ($e) {
\Yii::$app->response->redirect(['install/migrate']);
return false;
});
}
} catch (\Exception $e) {
$app->session->setFlash('db_init', $e->getMessage());
}
}
示例15: attachEvents
/**
* Attaches global and class-level event handlers from sub-modules
*
* @param \yii\base\Application $app the application currently running
*/
public function attachEvents($app)
{
foreach ($this->getModules() as $moduleID => $config) {
$module = $this->getModule($moduleID);
if ($module instanceof EventManagerInterface) {
/** @var EventManagerInterface $module */
foreach ($module->attachGlobalEvents() as $eventName => $handler) {
$app->on($eventName, $handler);
}
foreach ($module->attachClassEvents() as $className => $events) {
foreach ($events as $eventName => $handlers) {
foreach ($handlers as $handler) {
if (is_array($handler) && is_callable($handler[0])) {
$data = isset($handler[1]) ? array_pop($handler) : null;
$append = isset($handler[2]) ? array_pop($handler) : null;
Event::on($className, $eventName, $handler[0], $data, $append);
} elseif (is_callable($handler)) {
Event::on($className, $eventName, $handler);
}
}
}
}
}
}
}