I am reading one typo3 extension file:
class.tx_jcjob_pi1.php
...
$this->template = $this->cObj->fileResource($this->conf['templateFile']);
...
class.tslib_pibase.php
...
var $cObj;
...
class.tslib_content.php
...
function fileResource
...
Question:
How does this line work:$this->cObj->fileResource($this->conf['templateFile']);
?
there is not such codes: such as
$cObj = new tslib_cObj()
, how did$cObj
get instantiated?there is no such codes like
require_once('class.tslib_content.php');
how could$this->cObj
use the method inclass.tslib_content.php
?