diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-05-07 13:26:14 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-05-07 13:26:14 +0200 |
commit | 4f235de3c5a642d538da19b43b4ff4c01c2aa916 (patch) | |
tree | ef3e397fe39766609dfbf89239cc8a63cfeb8710 /include/comanche.php | |
parent | 8ca10dcbab6c645f6a2c791ea0d062c25d5d842e (diff) | |
download | volse-hubzilla-4f235de3c5a642d538da19b43b4ff4c01c2aa916.tar.gz volse-hubzilla-4f235de3c5a642d538da19b43b4ff4c01c2aa916.tar.bz2 volse-hubzilla-4f235de3c5a642d538da19b43b4ff4c01c2aa916.zip |
provide a possibility to include js/css libs
Diffstat (limited to 'include/comanche.php')
-rw-r--r-- | include/comanche.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/include/comanche.php b/include/comanche.php index 7115b5635..630c4f655 100644 --- a/include/comanche.php +++ b/include/comanche.php @@ -168,6 +168,33 @@ function comanche_block($s, $class = '') { return $o; } +function comanche_js($s) { + + switch($s) { + case 'jquery': + $path = 'view/js/jquery.js'; + break; + case 'bootstrap': + $path = 'library/bootstrap/js/bootstrap.min.js'; + break; + } + + return '<script src="' . z_root() . '/' . $path . '" ></script>'; + +} + +function comanche_css($s) { + + switch($s) { + case 'bootstrap': + $path = 'library/bootstrap/css/bootstrap.min.css'; + break; + } + + return '<link rel="stylesheet" href="' . z_root() . '/' . $path . '" type="text/css" media="screen">'; + +} + // This doesn't really belong in Comanche, but it could also be argued that it is the perfect place. // We need to be able to select what kind of template and decoration to use for the webpage at the heart of our content. // For now we'll allow an '[authored]' element which defaults to name and date, or 'none' to remove these, and perhaps @@ -246,6 +273,19 @@ function comanche_region(&$a, $s) { } } + $cnt = preg_match_all("/\[js\](.*?)\[\/js\]/ism", $s, $matches, PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $s = str_replace($mtch[0],comanche_js(trim($mtch[1])),$s); + } + } + + $cnt = preg_match_all("/\[css\](.*?)\[\/css\]/ism", $s, $matches, PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $s = str_replace($mtch[0],comanche_css(trim($mtch[1])),$s); + } + } // need to modify this to accept parameters $cnt = preg_match_all("/\[widget=(.*?)\](.*?)\[\/widget\]/ism", $s, $matches, PREG_SET_ORDER); |