blob: b510de1d1a99635c7c5c74fb04b1d88617d523c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
// $Header$
/**
* \brief Smarty {bitmodule}{/bitmodule} block handler
*
* To make a module it is enough to place something like following
* into corresponding mod-name.tpl file:
* \code
* {bitmodule name="module_name" title="Module title"}
* <!-- module Smarty/HTML code here -->
* {/bitmodule}
* \endcode
*
* This block may (can) use 2 Smarty templates:
* 1) module.tpl = usual template to generate module look-n-feel
* 2) module-error.tpl = to generate diagnostic error message about
* incorrect {bitmodule} parameters
\Note
error was used only in case the name was not there.
I fixed that error case. -- mose
*/
namespace Bitweaver\Plugins;
use Smarty\BlockHandler\BlockHandlerInterface;
use Smarty\Template;
class BlockBitModule implements BlockHandlerInterface {
public function handle( $params, $content, Template $template, &$repeat): string {
if (is_null($content)) {
return '';
}
global $gBitSmarty;
$moduleTag = !empty( $params['tag'] ) ? $params['tag'] : 'div';
$gBitSmarty->assign( 'moduleTag', $moduleTag );
if( empty( $content )) {
return '';
}
$params['data'] = $content;
if( !empty( $params['name'] ) ) {
$params['name'] = preg_replace( "/[^a-zA-Z0-9\\-\\_]/", "", $params['name'] );
}
$gBitSmarty->assign( 'modInfo', $params );
$temp = $gBitSmarty->fetch('bitpackage:themes/module.tpl');
return $temp;
}
public function isCacheable(): bool {
return true;
}
}
|