container
3 days ago
observable
3 days ago
result
3 days ago
container.php
3 days ago
index.html
3 days ago
observable.php
3 days ago
observer.php
3 days ago
result.php
3 days ago
state.php
3 days ago
state.php
48 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package VikAppointments |
| 4 | * @subpackage core |
| 5 | * @author E4J s.r.l. |
| 6 | * @copyright Copyright (C) 2021 E4J s.r.l. All Rights Reserved. |
| 7 | * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL |
| 8 | * @link https://vikwp.com |
| 9 | */ |
| 10 | |
| 11 | // No direct access |
| 12 | defined('ABSPATH') or die('No script kiddies please!'); |
| 13 | |
| 14 | /** |
| 15 | * Wraps the information of the action state variation. |
| 16 | * |
| 17 | * @since 1.7.3 |
| 18 | */ |
| 19 | class VAPActionState extends JObject |
| 20 | { |
| 21 | /** |
| 22 | * Flag used to check whether the propagation should stop. |
| 23 | * |
| 24 | * @var boolean |
| 25 | */ |
| 26 | private $stopPropagation = false; |
| 27 | |
| 28 | /** |
| 29 | * Checks whether the action propagation has been stopped. |
| 30 | * |
| 31 | * @return boolean |
| 32 | */ |
| 33 | public function isPropagationStopped() |
| 34 | { |
| 35 | return $this->stopPropagation; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Stops the action propagation. |
| 40 | * |
| 41 | * @return void |
| 42 | */ |
| 43 | public function stopPropagation() |
| 44 | { |
| 45 | $this->stopPropagation = true; |
| 46 | } |
| 47 | } |
| 48 |