ability for addons to create .pdl files and load them automatically
This commit is contained in:
parent
d908f53607
commit
8e9d076216
2
boot.php
2
boot.php
@ -2093,6 +2093,8 @@ function load_pdl() {
|
|||||||
|
|
||||||
if((! $s) && (($p = theme_include($n)) != ''))
|
if((! $s) && (($p = theme_include($n)) != ''))
|
||||||
$s = @file_get_contents($p);
|
$s = @file_get_contents($p);
|
||||||
|
elseif(file_exists('addon/'. App::$module . '/' . $n))
|
||||||
|
$s = @file_get_contents('addon/'. App::$module . '/' . $n);
|
||||||
if($s) {
|
if($s) {
|
||||||
App::$comanche->parse($s);
|
App::$comanche->parse($s);
|
||||||
App::$pdl = $s;
|
App::$pdl = $s;
|
||||||
|
Reference in New Issue
Block a user