PHP Classes

File: examples/actioncontroller/app/helpers/fooHelper.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/actioncontroller/app/helpers/fooHelper.php   Download  
File: examples/actioncontroller/app/helpers/fooHelper.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 232 bytes
 

Contents

Class file image Download
<?php
#include_once "A/Controller/Helper/Abstract.php";

class fooHelper extends A_Controller_Helper_Base {
   
    public function
bar($arg='') {
        return
"helper fooHelper::bar() called. ARG=" . strtoupper($arg) . "<br/>";
    }
}