mentors

mentors Git Source Tree


Root/app/controllers/BaseController.php

<?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);
		}
	}

}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.11294s using 11 queries.