コード例 #1
0
ファイル: rb.php プロジェクト: tejdeeps/tejcs.com
 /**
  * Part of RedBeanPHP Tagging API.
  * Returns all beans that have been tagged with ALL of the tags given.
  *
  * @param  $beanType type of bean you are looking for
  * @param  $tagList  list of tags to match
  *
  * @return array
  */
 public static function taggedAll($beanType, $tagList)
 {
     return self::$tagManager->taggedAll($beanType, $tagList);
 }
コード例 #2
0
 /**
  * Part of RedBeanPHP Tagging API.
  * Returns all beans that have been tagged with ALL of the tags given.
  *
  * @param string $beanType type of bean you are looking for
  * @param array  $tagList  list of tags to match
  *
  * @return array
  */
 public function taggedAll($beanType, $tagList)
 {
     return $this->tagManager->taggedAll($beanType, $tagList);
 }