예제 #1
0
파일: View.php 프로젝트: rockerest/capstone
		public static function wrap($views)
		{
			$viewList = array();
			foreach( $views as $vw )
			{
				array_push($viewList, new View($vw['viewsid'], $vw['userid'], $vw['itemid'], $vw['time']));
			}
			
			return View::sendback($viewList);
		}