예제 #1
0
 public function buildViewQuery(array $options)
 {
     return parent::buildViewQuery($options);
 }
예제 #2
0
 /**
  * Create a new instance of the document class
  *
  * Create a new instance of the statically called document class.
  * Implementing this method should only be required when using PHP 5.2 and
  * lower, otherwise the class can be determined using LSB.
  *
  * Do not pass a parameter to this method, this is only used to maintain
  * the called class information for PHP 5.2 and lower.
  *
  * @param mixed $docType
  * @returns phpillowDocument
  */
 public static function createNew($docType = null)
 {
     return parent::createNew($docType === null ? __CLASS__ : $docType);
 }
예제 #3
0
 /**
  * Construct new document
  *
  * Construct new document
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->views = $this->viewFunctions;
 }