Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. namespace BarradellJohns\Core;
  3. use BarradellJohns\Core;
  4. class GeneralPage extends Page{
  5.     private $_rightSideBar;
  6.     public function __construct(){
  7.     }
  8.     public function startSideBar(){
  9.         \ob_start();
  10.     }
  11.     public function endSideBar(){
  12.         $this->_rightSideBar = \ob_get_clean();
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement