Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.15] Document addition of various events #1413

Merged
merged 3 commits into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 122 additions & 0 deletions content/collections/extending-docs/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,18 @@ throw ValidationException::withMessages(['You did something wrong.']);

You may also just modify the submission object. You do not need to `return` anything.

### GlideCacheCleared
`Statamic\Events\GlideCacheCleared`

Dispatched after the Glide cache has been cleared, either via the `php please glide:clear` command or via the Cache Manager utility.

``` php
public function handle(GlideCacheCleared $event)
{
//
}
```

### GlideImageGenerated
`Statamic\Events\GlideImageGenerated`

Expand Down Expand Up @@ -674,6 +686,56 @@ public function handle(GlobalVariablesBlueprintFound $event)
}
```

### ImpersonationStarted
`Statamic\Events\ImpersonationStarted`

Dispatched whenever a user starts impersonating another user.

``` php
public function handle(ImpersonationStarted $event)
{
$event->impersonator; // The other who started impersonating the other.
$event->impersonated; // The user being impersonated.
}
```

### ImpersonationEnded
`Statamic\Events\ImpersonationEnded`

Dispatched whenever a user finishes impersonating another user.

``` php
public function handle(ImpersonationEnded $event)
{
$event->impersonator; // The other who started impersonating the other.
$event->impersonated; // The user being impersonated.
}
```

### LicensesRefreshed
`Statamic\Events\LicensesRefreshed`

Dispatched when a user manually triggers a "Sync" of a site's licenses via the Licenses utility.

``` php
public function handle(LicensesRefreshed $event)
{
//
}
```

### LicenseSet
`Statamic\Events\LicenseSet`

Dispatched after a license key has been set via the `php please license:set` command.

``` php
public function handle(LicenseSet $event)
{
//
}
```

### NavDeleting
`Statamic\Events\NavDeleting`

Expand Down Expand Up @@ -796,6 +858,54 @@ public function handle(RoleSaved $event)
}
```

### SearchIndexUpdated
`Statamic\Events\SearchIndexUpdated`

Dispatched when a search index is updated, either via the `php please search:update` command or via the Search utility.

``` php
public function handle(SearchIndexUpdated $event)
{
$event->index;
}
```

### StacheCleared
`Statamic\Events\StacheCleared`

Dispatched after the Stache cache has been cleared, either via the `php please stache:clear` command or via the Cache Manager utility.

``` php
public function handle(StacheCleared $event)
{
//
}
```

### StacheWarmed
`Statamic\Events\StacheWarmed`

Dispatched after the Stache cache has been warmed, either via the `php please stache:warm` command or via the Cache Manager utility.

``` php
public function handle(StacheWarmed $event)
{
//
}
```

### StaticCacheCleared
`Statamic\Events\StaticCacheCleared`

Dispatched after the Static Cache has been cleared, either via the `php please static:clear` command or via the Cache Manager utility.

``` php
public function handle(StaticCacheCleared $event)
{
//
}
```

### SubmissionCreated
`Statamic\Events\SubmissionCreated`

Expand Down Expand Up @@ -1033,6 +1143,18 @@ public function handle(UserGroupSaved $event)
}
```

### UserPasswordChanged
`Statamic\Events\UserPasswordChanged`

Dispatched when the password of another user has been changed in the Control Panel.

``` php
public function handle(UserPasswordChanged $event)
{
$event->user;
}
```

### UserRegistering
`Statamic\Events\UserRegistering`

Expand Down