0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.9.2.1-35
/
standard
/
htdocs
/
lib
/
Varien
/
Event
/
Observer
/
[
Home
]
File: Collection.php
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magento.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magento.com for more information. * * @category Varien * @package Varien_Event * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Event observer collection * * @category Varien * @package Varien_Event * @author Magento Core Team <core@magentocommerce.com> */ class Varien_Event_Observer_Collection { /** * Array of observers * * @var array */ protected $_observers; /** * Initializes observers * */ public function __construct() { $this->_observers = array(); } /** * Returns all observers in the collection * * @return array */ public function getAllObservers() { return $this->_observers; } /** * Returns observer by its name * * @param string $observerName * @return Varien_Event_Observer */ public function getObserverByName($observerName) { return $this->_observers[$observerName]; } /** * Adds an observer to the collection * * @param Varien_Event_Observer $observer * @return Varien_Event_Observer_Collection */ public function addObserver(Varien_Event_Observer $observer) { $this->_observers[$observer->getName()] = $observer; return $this; } /** * Removes an observer from the collection by its name * * @param string $observerName * @return Varien_Event_Observer_Collection */ public function removeObserverByName($observerName) { unset($this->_observers[$observerName]); return $this; } /** * Dispatches an event to all observers in the collection * * @param Varien_Event $event * @return Varien_Event_Observer_Collection */ public function dispatch(Varien_Event $event) { foreach ($this->_observers as $observer) { $observer->dispatch($event); } return $this; } }