Advertisement
iBet7o

bufferedPartial

Aug 24th, 2011
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. # /libs/view.php
  2.  
  3. /**
  4.  * Obtiene el contenido de un view
  5.  */
  6. public static function bufferedPartial ($partial, $params = array())
  7. {
  8.   ob_start();
  9.   self::partial($partial, FALSE, $params);
  10.   $content = ob_get_contents();
  11.   ob_end_clean();
  12.   return $content;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement