local/modules/ShortCodeMeta/EventListener/ShortCodeListener.php line 38

  1. <?php
  2. namespace ShortCodeMeta\EventListener;
  3. use ShortCode\Event\ShortCodeEvent;
  4. use ShortCodeMeta\ShortCodeMeta;
  5. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  6. class ShortCodeListener implements EventSubscriberInterface
  7. {
  8.     public static function getSubscribedEvents()
  9.     {
  10.         return [
  11.           ShortCodeMeta::EMPTY_PAGE_META_SHORT_CODE => [['checkEmptyPage'128]],
  12.           ShortCodeMeta::PAGINATION_META_SHORT_CODE => [['addPaginationMeta'128]],
  13.         ];
  14.     }
  15.     public function addPaginationMeta(ShortCodeEvent $event)
  16.     {
  17.         $attributes $event->getAttributes();
  18.         if (!isset($attributes['rel'])) {
  19.             return;
  20.         }
  21.         $rel $attributes['rel'];
  22.         $staticVariableName strtoupper($attributes['rel']).'_PAGE_URL';
  23.         if (null !== $url ShortCodeMeta::$$staticVariableName) {
  24.             $event->setResult('<link rel="'.$rel.'" href="'.$url.'">');
  25.         }
  26.     }
  27.     public function checkEmptyPage(ShortCodeEvent $event)
  28.     {
  29.         if (ShortCodeMeta::$IS_EMPTY_PAGE === true) {
  30.             $event->setResult('<meta name="robots" content="noindex, nofollow">');
  31.         }
  32.     }
  33. }