예제 #1
0
	/**
	 * You can create from an array also
	 *
	 * @param integer $id
	 * @return object
	 */
	public function create_array($ids)
	{
		return vBForum_Search_Result_Post::create_array($ids);
	}
예제 #2
0
파일: post.php 프로젝트: 0hyeah/yurivn
 public static function create($id)
 {
     return vBForum_Search_Result_Post::create_from_object(vB_Legacy_Post::create_from_id($id, true));
 }
예제 #3
0
파일: post.php 프로젝트: 0hyeah/yurivn
 /**
 * vBForum_Search_Type_Post::create_item()
 * This is how the type objects are created
 *
 * @param integer $id
 * @return vBForum_Search_Type_Post object
 */
 public function create_item($id)
 {
     return vBForum_Search_Result_Post::create($id);
 }