Exemple #1
0
 /**
  * Alternative Constructor
  *
  * This allows the Current BMO to be referenced from anywhere, without
  * needing to instantiate a new one. Calling $x = FreePBX::create() will
  * create a new BMO if one has not already beeen created (unlikely!), or
  * return a reference to the current one.
  *
  * @return object FreePBX BMO Object
  */
 public static function create()
 {
     if (!isset(self::$obj)) {
         self::$obj = new FreePBX();
     }
     return self::$obj;
 }