コード例 #1
0
ファイル: Ldap.php プロジェクト: jpbender/mage_virtual
 /**
  * Returns the schema
  *
  * @return Zend_Ldap_Node_Schema
  * @throws Zend_Ldap_Exception
  */
 public function getSchema()
 {
     if ($this->_schema === null) {
         /**
          * @see Zend_Ldap_Node_Schema
          */
         #require_once 'Zend/Ldap/Node/Schema.php';
         $this->_schema = Zend_Ldap_Node_Schema::create($this);
     }
     return $this->_schema;
 }
コード例 #2
0
ファイル: Ldap.php プロジェクト: kobmaki/icingaweb2
 /**
  * Returns the schema
  *
  * @return Zend_Ldap_Node_Schema
  * @throws Zend_Ldap_Exception
  */
 public function getSchema()
 {
     if ($this->_schema === null) {
         /**
          * @see Zend_Ldap_Node_Schema
          */
         $this->_schema = Zend_Ldap_Node_Schema::create($this);
     }
     return $this->_schema;
 }