Skip to content

Instantly share code, notes, and snippets.

@hiromi2424
hiromi2424 / BaseActionComponent.php
Created December 10, 2011 05:43 — forked from slywalker/BaseActionComponent.php
CakePHP2.0 BaseActionComponent
<?php
App::uses('Component', 'Controller');
App::uses('Inflector', 'Utility');
class BaseActionComponent extends Component {
public $components = array('Session');
public $Controller;