Hii..
How can I access abstract class methods in zend form?
I have the following class in library folder
abstract class Adx_Controller_Standard extends Zend_Controller_Action { public function getSelectedAdvertiser() { return value; }
}
I want to access getSelectAdvertiser() function in Module(Advertiser) -> Forms (AddAdvertiser.php) which is Zend Form.
How can I do this ?? please help!!