PHP code example of numero2 / contao-perview-bundle
1. Go to this page and download the library: Download numero2/contao-perview-bundle 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/ */
numero2 / contao-perview-bundle example snippets
// src/EventListener/ParsePerviewPositionListener.php
namespace App\EventListener;
use Contao\CoreBundle\ServiceAnnotation\Hook;
use Contao\NewsModel;
/**
* @Hook("parsePerviewPosition")
*/
class ParsePerviewPositionListener
{
public function __invoke(NewsModel $news, object $position, bool $isUpdate): void
{
$news->something = $position->something;
}
}