aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-08-05 23:19:33 -0700
committerzotlabs <mike@macgirvin.com>2018-08-05 23:19:33 -0700
commitaeb9d5cd90a3bcb79c8d0b1645ece47e8756f422 (patch)
treed40bacdc422c54b08127f7f6514e63d9535491c9
parent8e9d076216a364beecf57574134fb36c12be6e6f (diff)
downloadvolse-hubzilla-aeb9d5cd90a3bcb79c8d0b1645ece47e8756f422.tar.gz
volse-hubzilla-aeb9d5cd90a3bcb79c8d0b1645ece47e8756f422.tar.bz2
volse-hubzilla-aeb9d5cd90a3bcb79c8d0b1645ece47e8756f422.zip
create alter_pdl hook
-rwxr-xr-xboot.php12
1 files 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;