From aeb9d5cd90a3bcb79c8d0b1645ece47e8756f422 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 5 Aug 2018 23:19:33 -0700 Subject: create alter_pdl hook --- boot.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 316e86758..fca184555 100755 --- a/boot.php +++ b/boot.php @@ -2072,8 +2072,8 @@ function load_pdl() { if (! count(App::$layout)) { $arr = [ - 'module' => App::$module, - 'layout' => '' + 'module' => App::$module, + 'layout' => '' ]; /** * @hooks load_pdl @@ -2095,6 +2095,14 @@ function load_pdl() { $s = @file_get_contents($p); elseif(file_exists('addon/'. App::$module . '/' . $n)) $s = @file_get_contents('addon/'. App::$module . '/' . $n); + + $arr = [ + 'module' => App::$module, + 'layout' => $s + ]; + call_hooks('alter_pdl',$arr); + $s = $arr['layout']; + if($s) { App::$comanche->parse($s); App::$pdl = $s; -- cgit v1.2.3