aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/ExtensionManager.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2018-01-01 20:49:18 +0100
committerGravatar GitHub <noreply@github.com> 2018-01-01 20:49:18 +0100
commita756878219f0c67674849c1bc1b881303d394ee7 (patch)
tree4c17b3e0574fa8b6ebd6d96bed4f883960401723 /lib/Minz/ExtensionManager.php
parent8c2113f9e6eb86b630a4e861513229d7abf219b8 (diff)
parent97d4250bd308175b72785f784d5b15e41ed7b04f (diff)
Merge pull request #1714 from kevinpapst/hook-readingmodes
Added extension hook for reading modes
Diffstat (limited to 'lib/Minz/ExtensionManager.php')
-rw-r--r--lib/Minz/ExtensionManager.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Minz/ExtensionManager.php b/lib/Minz/ExtensionManager.php
index 02a99701f..10c49a8b6 100644
--- a/lib/Minz/ExtensionManager.php
+++ b/lib/Minz/ExtensionManager.php
@@ -31,6 +31,10 @@ class Minz_ExtensionManager {
'list' => array(),
'signature' => 'NoneToNone',
),
+ 'nav_reading_modes' => array( // function($readingModes = array) -> array | null
+ 'list' => array(),
+ 'signature' => 'OneToOne',
+ ),
);
private static $ext_to_hooks = array();