Files
EasySoft-ZenTaoPMS/module/misc/ext/model/ext.php
2012-06-08 01:49:45 +00:00

7 lines
254 B
PHP

<?php
public function hello2()
{
echo $this->loadExtension('test')->hello(); // Load testMisc class from test.class.php in ext/model/class.
return $this->testMisc->hello(); // After loading, can use $this->testMisc to call it.
}