예제 #1
0
파일: rb.php 프로젝트: tejdeeps/tejcs.com
 /**
  * Part of RedBeanPHP Tagging API.
  * Returns all beans that have been tagged with one 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 tagged($beanType, $tagList)
 {
     return self::$tagManager->tagged($beanType, $tagList);
 }
 /**
  * Part of RedBeanPHP Tagging API.
  * Returns all beans that have been tagged with one 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 tagged($beanType, $tagList)
 {
     return $this->tagManager->tagged($beanType, $tagList);
 }