mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
18 lines
255 B
PHP
Executable File
18 lines
255 B
PHP
Executable File
<?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);
|
|
}
|
|
}
|
|
|
|
} |