예제 #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);
 }
 /**
  * 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);
 }