1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
-
-
-
-
-
- class Swift_Events_EventObject implements Swift_Events_Event
- {
-
-
- private $_source;
-
-
- private $_bubbleCancelled = false;
-
-
-
- public function __construct($source)
- {
- $this->_source = $source;
- }
-
-
-
- public function getSource()
- {
- return $this->_source;
- }
-
-
-
- public function cancelBubble($cancel = true)
- {
- $this->_bubbleCancelled = $cancel;
- }
-
-
-
- public function bubbleCancelled()
- {
- return $this->_bubbleCancelled;
- }
-
- }
|