0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
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@magentocommerce.com so we can send you a copy immediately. * * @category Varien * @package Varien_Event * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.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; } }
© 2017 -
ZeroByte.ID
.