PHP code example of kennethormandy / craft-s3securedownloads
1. Go to this page and download the library: Download kennethormandy/craft-s3securedownloads library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kennethormandy / craft-s3securedownloads example snippets
use Craft;
use yii\base\Event;
use kennethormandy\s3securedownloads\events\SignUrlEvent;
use kennethormandy\s3securedownloads\services\SignUrl;
// …
Event::on(
SignUrl::class,
SignUrl::EVENT_BEFORE_SIGN_URL,
function (SignUrlEvent $event) {
$asset = $event->asset;
Craft::info("Handle EVENT_BEFORE_SIGN_URL event here", __METHOD__);
}
);
Event::on(
SignUrl::class,
SignUrl::EVENT_AFTER_SIGN_URL,
function (SignUrlEvent $event) {
$asset = $event->asset;
Craft::info("Handle EVENT_AFTER_SIGN_URL event here", __METHOD__);
}
);