Moving helper tags to specific helper classes

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3891 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2006-11-22 03:32:58 +00:00
parent 204ff6bcbb
commit 22588729d4
3 changed files with 27 additions and 9 deletions

View file

@ -44,6 +44,13 @@ class AjaxHelper extends AppHelper {
* @var array
*/
var $helpers = array('Html', 'Javascript');
/**
* html tags used by this helper.
*
* @var array
*/
var $tags = array('blockstart' => '<div%s>',
'blockend' => '</div>');
/**
* Names of Javascript callback functions.
*