Can't figure out how to import php files into my joomla component- all of these fail:
- require_once('code.php');
- require_once(dirname(FILE).DS.'code.php');
- require_once(JPATH_COMPONENT.DS.'code.php' );
Any ideas? thanks
|
Can't figure out how to import php files into my joomla component- all of these fail:
Any ideas? thanks
| |||
feedback
|
|
Try jimport, see Joomla's docs on this: http://docs.joomla.org/Jimport
This will include the php file "/libraries/joomla/application/component/controller.php". | |||||
feedback
|
|
Usually these are included in a helper.php file
| |||
|
feedback
|