2010-03-24 22:11:53 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
2010-10-03 12:31:21 -04:00
|
|
|
* PHP 5
|
2010-03-24 22:11:53 -04:00
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 20:59:49 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-03-24 22:11:53 -04:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-03-24 22:11:53 -04:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 20:59:49 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-03-24 22:11:53 -04:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.Test.test_app.View.Helper
|
2010-03-24 22:11:53 -04:00
|
|
|
* @since CakePHP(tm) v 1.3
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
2011-03-11 18:18:58 -04:30
|
|
|
|
|
|
|
App::uses('Helper', 'View');
|
|
|
|
|
2010-03-24 22:11:53 -04:00
|
|
|
class BananaHelper extends Helper {
|
2012-06-01 11:42:55 +07:00
|
|
|
|
|
|
|
public function peel() {
|
|
|
|
return '<b>peeled</b>';
|
|
|
|
}
|
|
|
|
|
2010-05-11 08:07:49 +10:00
|
|
|
}
|