本文整理汇总了PHP中Illuminate\Support\Facades\Event类的典型用法代码示例。如果您正苦于以下问题:PHP Event类的具体用法?PHP Event怎么用?PHP Event使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Event类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: getRename
/**
* @return string
*/
public function getRename()
{
$old_name = Input::get('file');
$new_name = trim(Input::get('new_name'));
$file_path = parent::getPath('directory');
$thumb_path = parent::getPath('thumb');
$old_file = $file_path . $old_name;
if (!File::isDirectory($old_file)) {
$extension = File::extension($old_file);
$new_name = str_replace('.' . $extension, '', $new_name) . '.' . $extension;
}
$new_file = $file_path . $new_name;
if (Config::get('lfm.alphanumeric_directory') && preg_match('/[^\\w-]/i', $new_name)) {
return Lang::get('laravel-filemanager::lfm.error-folder-alnum');
} elseif (File::exists($new_file)) {
return Lang::get('laravel-filemanager::lfm.error-rename');
}
if (File::isDirectory($old_file)) {
File::move($old_file, $new_file);
Event::fire(new FolderWasRenamed($old_file, $new_file));
return 'OK';
}
File::move($old_file, $new_file);
if ('Images' === $this->file_type) {
File::move($thumb_path . $old_name, $thumb_path . $new_name);
}
Event::fire(new ImageWasRenamed($old_file, $new_file));
return 'OK';
}
开发者ID:unisharp,项目名称:laravel-filemanager,代码行数:32,代码来源:RenameController.php
示例2: listen
protected function listen(DataProvider $provider)
{
Event::listen(DataProvider::EVENT_FETCH_ROW, function (DataRow $row, DataProvider $provider) use($provider) {
if ($provider !== $provider) {
return;
}
$this->rows_processed++;
foreach ($this->fields as $field) {
$name = $field->getName();
$operation = $this->getFieldOperation($name);
switch ($operation) {
case self::OPERTATION_SUM:
$this->src[$name] += $row->getCellValue($field);
break;
case self::OPERATION_COUNT:
$this->src[$name] = $this->rows_processed;
break;
case self::OPERATION_AVG:
if (empty($this->src["{$name}_sum"])) {
$this->src["{$name}_sum"] = 0;
}
$this->src["{$name}_sum"] += $row->getCellValue($field);
$this->src[$name] = round($this->src["{$name}_sum"] / $this->rows_processed, 2);
break;
default:
throw new Exception("TotalsRow:Unknown aggregation operation.");
}
}
});
}
开发者ID:creativify,项目名称:Grids,代码行数:30,代码来源:TotalsRow.php
示例3: start
/**
* Prepares a new WebSocket server on a specified host & port.
*
* @param string $tcpid
*
* @return YnievesDotNet\FourStream\FourStream\FourStreamServer
*/
public function start($tcpid)
{
$oldNode = FSNode::all();
echo "Closing old nodes", "\n";
foreach ($oldNode as $node) {
$node->delete();
}
$this->server = new Websocket(new Socket($tcpid));
$this->server->on('open', function (Bucket $bucket) {
Event::fire(new Events\ConnectionOpen($bucket));
});
$this->server->on('message', function (Bucket $bucket) {
Event::fire(new Events\MessageReceived($bucket));
});
$this->server->on('binary-message', function (Bucket $bucket) {
Event::fire(new Events\BinaryMessageReceived($bucket));
});
$this->server->on('ping', function (Bucket $bucket) {
Event::fire(new Events\PingReceived($bucket));
});
$this->server->on('error', function (Bucket $bucket) {
Event::fire(new Events\ErrorGenerated($bucket));
});
$this->server->on('close', function (Bucket $bucket) {
Event::fire(new Events\ConnectionClose($bucket));
});
return $this;
}
开发者ID:ynievesdotnet,项目名称:fourstream,代码行数:35,代码来源:FourStreamServer.php
示例4: testPermanentlyDeleteUser
public function testPermanentlyDeleteUser()
{
// Make sure our events are fired
Event::fake();
$this->actingAs($this->admin)->delete('/admin/access/user/' . $this->user->id)->notSeeInDatabase('users', ['id' => $this->user->id, 'deleted_at' => null])->visit('/admin/access/user/' . $this->user->id . '/delete')->seePageIs('/admin/access/user/deleted')->see('The user was deleted permanently.')->notSeeInDatabase('users', ['id' => $this->user->id]);
Event::assertFired(UserPermanentlyDeleted::class);
}
开发者ID:rappasoft,项目名称:laravel-5-boilerplate,代码行数:7,代码来源:UserRouteTest.php
示例5: register
/**
* Register the application services.
*
* @return void
*/
public function register()
{
$configPath = __DIR__ . '/../config/sql-logging.php';
$this->mergeConfigFrom($configPath, 'sql-logging');
if (config('sql-logging.log', false)) {
Event::listen('illuminate.query', function ($query, $bindings, $time) {
$data = compact('bindings', 'time');
// Format binding data for sql insertion
foreach ($bindings as $i => $binding) {
if ($binding instanceof \DateTime) {
$bindings[$i] = $binding->format('\'Y-m-d H:i:s\'');
} else {
if (is_string($binding)) {
$bindings[$i] = "'{$binding}'";
}
}
}
// Insert bindings into query
$query = str_replace(array('%', '?'), array('%%', '%s'), $query);
$query = vsprintf($query, $bindings);
$log = new Logger('sql');
$log->pushHandler(new StreamHandler(storage_path() . '/logs/sql-' . date('Y-m-d') . '.log', Logger::INFO));
// add records to the log
$log->addInfo($query, $data);
});
}
}
开发者ID:oscaragcp,项目名称:sql-logging,代码行数:32,代码来源:SqlLoggingServiceProvider.php
示例6: testLogoutRoute
/**
* Test the logout button redirects the user back to home and the login button is again visible
*/
public function testLogoutRoute()
{
// Make sure our events are fired
Event::fake();
$this->actingAs($this->user)->visit('/logout')->see('Login')->see('Register');
Event::assertFired(UserLoggedOut::class);
}
开发者ID:rappasoft,项目名称:laravel-5-boilerplate,代码行数:10,代码来源:LoggedInRouteTest.php
示例7: boot
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot(DispatcherContract $events)
{
parent::boot($events);
Event::listen('Aacotroneo\\Saml2\\Events\\Saml2LoginEvent', function (Saml2LoginEvent $event) {
$user = $event->getSaml2User();
/*$userData = [
'id' => $user->getUserId(),
'attributes' => $user->getAttributes(),
'assertion' => $user->getRawSamlAssertion()
];*/
$laravelUser = User::where("username", "=", $user->getUserId())->get()->first();
if ($laravelUser != null) {
Auth::login($laravelUser);
} else {
//if first user then create it and login
$count = \App\User::all()->count();
if ($count == 0) {
$data = array();
$data['lastname'] = "";
$data['firstname'] = "";
$data['username'] = $user->getUserId();
$data['role'] = "admin";
$user = \App\User::create($data);
\Auth::login($user);
return \Redirect::to('/');
} else {
abort(401);
}
}
//if it does not exist create it and go on or show an error message
});
}
开发者ID:ghyster,项目名称:dns-angular,代码行数:38,代码来源:EventServiceProvider.php
示例8: upload
/**
* Upload an image/file and (for images) create thumbnail
*
* @param UploadRequest $request
* @return string
*/
public function upload()
{
try {
$res = $this->uploadValidator();
if (true !== $res) {
return Lang::get('laravel-filemanager::lfm.error-invalid');
}
} catch (\Exception $e) {
return $e->getMessage();
}
$file = Input::file('upload');
$new_filename = $this->getNewName($file);
$dest_path = parent::getPath('directory');
if (File::exists($dest_path . $new_filename)) {
return Lang::get('laravel-filemanager::lfm.error-file-exist');
}
$file->move($dest_path, $new_filename);
if ('Images' === $this->file_type) {
$this->makeThumb($dest_path, $new_filename);
}
Event::fire(new ImageWasUploaded(realpath($dest_path . '/' . $new_filename)));
// upload via ckeditor 'Upload' tab
if (!Input::has('show_list')) {
return $this->useFile($new_filename);
}
return 'OK';
}
开发者ID:laravel2580,项目名称:llaravel-filemanager,代码行数:33,代码来源:UploadController.php
示例9: __construct
/**
* EventsDataSource constructor.
*/
public function __construct()
{
$this->points = [];
Event::listen('*', function () {
$this->points[] = ['memory' => memory_get_usage(true), 'time' => microtime(true)];
});
}
开发者ID:lahaxearnaud,项目名称:clockwork,代码行数:10,代码来源:MemoryDataSource.php
示例10: title
public function title()
{
$oldTitle = $this->page->getTitle();
$this->page->setTitle($this->request->input('title'));
Event::fire(new Events\PageTitleWasChanged($this->page, $oldTitle, $this->page->getTitle()));
return ['status' => $this->page->getCurrentVersion()->getStatus(), 'location' => (string) $this->page->url(true)];
}
开发者ID:imanghafoori1,项目名称:boom-core,代码行数:7,代码来源:Save.php
示例11: getRegisteredSettings
/**
* Handle registering and returning registered settings.
*
* @return array
*/
public function getRegisteredSettings()
{
$registry = new SettingsRegistry();
$registry->register('General', [['name' => 'app.site.name', 'type' => 'text', 'label' => 'Site name', 'options' => ['required' => 'required']], ['name' => 'app.site.desc', 'type' => 'text', 'label' => 'Site desc', 'options' => ['required' => 'required']]]);
Event::fire('register.settings', [$registry]);
return $registry->collectSettings();
}
开发者ID:kamaroly,项目名称:shift,代码行数:12,代码来源:SettingsService.php
示例12: store
/**
* Store a newly created resource in storage.
*
* @param Request $request
* @return Response
*/
public function store(Request $request)
{
$category = $this->categoryRepo->insert($request->input());
Event::fire(new CategoryCreated($category));
// TODO: flash message
return redirect()->back();
}
开发者ID:karlos545,项目名称:takeaway,代码行数:13,代码来源:CategoriesController.php
示例13: handle
/**
* Write a logout history item for this user
*
* @param $user
*/
public static function handle($user)
{
$user->login_history()->save(new UserLoginHistory(['source' => Request::getClientIp(), 'user_agent' => Request::header('User-Agent'), 'action' => 'logout']));
$message = 'User logged out from ' . Request::getClientIp();
Event::fire('security.log', [$message, 'authentication']);
return;
}
开发者ID:freedenizen,项目名称:web,代码行数:12,代码来源:Logout.php
示例14: boot
public function boot(Guard $guard, MixPanel $mixPanel)
{
include __DIR__ . '/Http/routes.php';
$this->app->make(config('auth.model'))->observe(new MixPanelUserObserver($mixPanel));
$eventHandler = new MixPanelEventHandler($guard, $mixPanel);
Event::subscribe($eventHandler);
}
开发者ID:janusnic,项目名称:MixPanel,代码行数:7,代码来源:MixPanelServiceProvider.php
示例15: deleteType
public static function deleteType($id)
{
// firing event so it can get catched for permission handling
Event::fire('customprofile.deleting');
$success = ProfileFieldType::findOrFail($id)->delete();
return $success;
}
开发者ID:donotgowiththeflow,项目名称:laravel-acl-seeinfront,代码行数:7,代码来源:CustomProfileRepository.php
示例16: registerListeners
/**
*
*/
protected function registerListeners()
{
EventFacade::listen('*', function ($param) {
$this->data[] = ['name' => EventFacade::firing(), 'param' => $param, 'time' => microtime(true)];
$this->stream();
});
}
开发者ID:ndrx-io,项目名称:profiler-laravel,代码行数:10,代码来源:Event.php
示例17: __construct
public function __construct()
{
$this->middleware('jwt.auth');
Event::listen('tymon.jwt.valid', function ($user) {
$this->user = $user;
});
}
开发者ID:Rep2,项目名称:QUIZ,代码行数:7,代码来源:QuizController.php
示例18: store
/**
* Store a newly created resource in storage.
*
* @param UserRequest $request
* @return \Illuminate\Http\Response
*/
public function store(UserRequest $request)
{
$user = $this->userRepository->save($request->all());
Event::fire(new SendMail($user));
Session::flash('message', 'User successfully added!');
return redirect('user');
}
开发者ID:arsenaltech,项目名称:folio,代码行数:13,代码来源:UserController.php
示例19: fire
public function fire($job, $data)
{
// build the event data
$event_data = $this->event_builder->buildBlockEventData($data['hash']);
// fire an event
try {
Log::debug("Begin xchain.block.received {$event_data['height']} ({$event_data['hash']})");
Event::fire('xchain.block.received', [$event_data]);
Log::debug("End xchain.block.received {$event_data['height']} ({$event_data['hash']})");
// job successfully handled
$job->delete();
} catch (Exception $e) {
EventLog::logError('BTCBlockJob.failed', $e, $data);
// this block had a problem
// but it might be found if we try a few more times
$attempts = $job->attempts();
if ($attempts > self::MAX_ATTEMPTS) {
// we've already tried MAX_ATTEMPTS times - give up
Log::debug("Block {$data['hash']} event failed after attempt " . $attempts . ". Giving up.");
$job->delete();
} else {
$release_time = 2;
Log::debug("Block {$data['hash']} event failed after attempt " . $attempts . ". Trying again in " . self::RETRY_DELAY . " seconds.");
$job->release(self::RETRY_DELAY);
}
}
}
开发者ID:CryptArc,项目名称:xchain,代码行数:27,代码来源:BTCBlockJob.php
示例20: boot
public function boot()
{
Event::listen('backend.menu.extendItems', function ($manager) {
$manager->addSideMenuItems('Genius.Base', 'pages', ['contacts' => ['label' => 'genius.contacts::lang.settings.menu_label', 'icon' => 'icon-envelope-o', 'url' => Backend::url('genius/contacts/settings/update/1'), 'order' => 20]]);
$manager->addSideMenuItems('Genius.Base', 'admin', ['contacts' => ['label' => 'genius.contacts::lang.contacts.menu_label', 'icon' => 'icon-envelope-o', 'url' => Backend::url('genius/contacts/contacts'), 'order' => 20]]);
});
}
开发者ID:estudiogenius,项目名称:oc-genius-contacts,代码行数:7,代码来源:Plugin.php
注:本文中的Illuminate\Support\Facades\Event类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论