Not exactly. I am trying to get more functionality including new files to earlier registered (by the installator) .php files. For example I have the file model.php file which is defined in .xml file and this file was successfully installed with the component. After that I create file extras.php and I want to include this file to model.php through
Code:
//model.php
require_once('extras.php');
This is ok and it works but if I try to include to extras.php file directive
Code:
//extras.php
defined( '_JEXEC' ) or die( 'Restricted access' );
The all functionality in the extras don't work because _JEXEC is not defined and program's flow dies;
In such situation I can't use rich functionality of Joomla framework e.g. call JRequest::getVar() or transfer variable between modules through global variables and so on.
So I want to know - what installator does during installation process? Where extra files should be registered in? In the database? (I didn't find such information in database) May be somewhere in Joomla files?
In other words - how I can install component manually (not through installator)?