3.10.3 Creating Functionality for All Helpers
All helpers extend a special class, AppHelper (just like models extend AppModel and controllers extend AppController). To create functionality that would be available to all helpers, create /app/app_helper.php.
<?php
class AppHelper extends Helper {
function customMethod () {
}
}
?>
<?phpclass AppHelper extends Helper {function customMethod () {}}?>
See comments for this section
