Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/cakephp/cakephp/src/Event/Decorator/SubjectFilterDecorator.php
<?php
/**
 * CakePHP : Rapid Development Framework (https://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
 * @link          https://cakephp.org CakePHP Project
 * @since         3.3.0
 * @license       https://opensource.org/licenses/mit-license.php MIT License
 */
namespace Cake\Event\Decorator;

use
Cake\Event\Event;
use
RuntimeException;

/**
 * Event Subject Filter Decorator
 *
 * Use this decorator to allow your event listener to only
 * be invoked if event subject matches the `allowedSubject` option.
 *
 * The `allowedSubject` option can be a list of class names, if you want
 * to check multiple classes.
 */
class SubjectFilterDecorator extends AbstractDecorator
{
   
/**
     * {@inheritDoc}
     */
   
public function __invoke()
    {
       
$args = func_get_args();
        if (!
$this->canTrigger($args[0])) {
            return
false;
        }

        return
$this->_call($args);
    }

   
/**
     * Checks if the event is triggered for this listener.
     *
     * @param \Cake\Event\Event $event Event object.
     * @return bool
     */
   
public function canTrigger(Event $event)
    {
       
$class = get_class($event->getSubject());
        if (!isset(
$this->_options['allowedSubject'])) {
            throw new
RuntimeException(self::class . ' Missing subject filter options!');
        }
        if (
is_string($this->_options['allowedSubject'])) {
           
$this->_options['allowedSubject'] = [$this->_options['allowedSubject']];
        }

        return
in_array($class, $this->_options['allowedSubject']);
    }
}