mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding helper object variables to Helper base class
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3590 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
5bb71da382
commit
03ec6ccb2a
1 changed files with 30 additions and 0 deletions
|
@ -38,6 +38,36 @@
|
|||
*/
|
||||
class Helper extends Object {
|
||||
|
||||
/**
|
||||
* Base URL
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
var $base = null;
|
||||
/**
|
||||
* URL to current action.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
var $here = null;
|
||||
/**
|
||||
* Parameter array.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
var $params = array();
|
||||
/**
|
||||
* Current action.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
var $action = null;
|
||||
/**
|
||||
* Enter description here...
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
var $data = null;
|
||||
/**
|
||||
* Holds tag templates.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue