| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- /* $Id: FluxdServiceMod.Trigger.php 1915 2006-12-16 11:51:16Z b4rt $ */
- /*******************************************************************************
- LICENSE
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License (GPL)
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- To read the license please visit http://www.gnu.org/copyleft/gpl.html
- *******************************************************************************/
- // class for the Fluxd-Service-module Trigger
- class FluxdTrigger extends FluxdServiceMod
- {
- // =========================================================================
- // public static methods
- // =========================================================================
- /**
- * accessor for singleton
- *
- * @return FluxdTrigger
- */
- function getInstance() {
- global $instanceFluxdTrigger;
- // initialize if needed
- if (!isset($instanceFluxdTrigger))
- FluxdTrigger::initialize();
- return $instanceFluxdTrigger;
- }
- /**
- * initialize FluxdTrigger.
- */
- function initialize() {
- global $instanceFluxdTrigger;
- // create instance
- if (!isset($instanceFluxdTrigger))
- $instanceFluxdTrigger = new FluxdTrigger();
- }
- /**
- * getState
- *
- * @return state
- */
- function getState() {
- global $instanceFluxdTrigger;
- return (isset($instanceFluxdTrigger))
- ? $instanceFluxdTrigger->state
- : FLUXDMOD_STATE_NULL;
- }
- /**
- * getMessages
- *
- * @return array
- */
- function getMessages() {
- global $instanceFluxdTrigger;
- return (isset($instanceFluxdTrigger))
- ? $instanceFluxdTrigger->messages
- : array();
- }
- /**
- * getModState
- *
- * @return state
- */
- function getModState() {
- global $instanceFluxdTrigger;
- return (isset($instanceFluxdTrigger))
- ? $instanceFluxdTrigger->modstate
- : FLUXDMOD_STATE_NULL;
- }
- /**
- * isRunning
- *
- * @return boolean
- */
- function isRunning() {
- global $instanceFluxdTrigger;
- return (isset($instanceFluxdTrigger))
- ? ($instanceFluxdTrigger->modstate == FLUXDMOD_STATE_RUNNING)
- : false;
- }
- // =========================================================================
- // ctor
- // =========================================================================
- /**
- * ctor
- */
- function FluxdTrigger() {
- // name
- $this->moduleName = "Trigger";
- // initialize
- $this->instance_initialize();
- }
- }
- ?>
|