invoiceninja/app/controllers/BaseController.php

18 lines
255 B
PHP
Raw Normal View History

2013-11-26 14:45:07 +02:00
<?php
class BaseController extends Controller {
/**
* Setup the layout used by the controller.
*
* @return void
*/
protected function setupLayout()
{
if ( ! is_null($this->layout))
{
$this->layout = View::make($this->layout);
}
}
}