예제 #1
0
파일: rb.php 프로젝트: tejdeeps/tejcs.com
 /**
  * Part of RedBeanPHP Tagging API.
  * Removes all sepcified tags from the bean. The tags specified in
  * the second parameter will no longer be associated with the bean.
  *
  * @param  RedBean_OODBBean $bean    tagged bean
  * @param  array            $tagList list of tags (names)
  *
  * @return void
  */
 public static function untag($bean, $tagList)
 {
     return self::$tagManager->untag($bean, $tagList);
 }
 /**
  * Part of RedBeanPHP Tagging API.
  * Removes all specified tags from the bean. The tags specified in
  * the second parameter will no longer be associated with the bean.
  *
  * @param  RedBean_OODBBean $bean    tagged bean
  * @param  array            $tagList list of tags (names)
  *
  * @return void
  */
 public function untag($bean, $tagList)
 {
     $this->tagManager->untag($bean, $tagList);
 }