-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d220e2b
commit 6585aed
Showing
8 changed files
with
107 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace Tv2regionerne\StatamicAssetdrop\Events; | ||
|
||
use Statamic\Events\Event; | ||
|
||
class ExternalDocumentProcessed extends Event | ||
{ | ||
public function __construct( | ||
public $asset, | ||
) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace Tv2regionerne\StatamicAssetdrop\Events; | ||
|
||
use Statamic\Events\Event; | ||
|
||
class ExternalImageProcessed extends Event | ||
{ | ||
public function __construct( | ||
public $asset, | ||
) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace Tv2regionerne\StatamicAssetdrop\Events; | ||
|
||
use Statamic\Events\Event; | ||
|
||
class ExternalVideoProcessed extends Event | ||
{ | ||
public function __construct( | ||
public $asset, | ||
) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace Tv2regionerne\StatamicAssetdrop\Events; | ||
|
||
use Statamic\Events\Event; | ||
|
||
class StatamicDocumentProcessed extends Event | ||
{ | ||
public function __construct( | ||
public $asset, | ||
public $newAsset, | ||
) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace Tv2regionerne\StatamicAssetdrop\Events; | ||
|
||
use Statamic\Events\Event; | ||
|
||
class StatamicImageProcessed extends Event | ||
{ | ||
public function __construct( | ||
public $asset, | ||
public $newAsset, | ||
) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace Tv2regionerne\StatamicAssetdrop\Events; | ||
|
||
use Statamic\Events\Event; | ||
|
||
class StatamicVideoProcessed extends Event | ||
{ | ||
public function __construct( | ||
public $asset, | ||
public $newAsset, | ||
) {} | ||
} |