XPressME Integration Kit

Trac

source: branches/Ver2.4/xpressme_integration_kit/blocks/calender_block.php @ 829

Last change on this file since 829 was 495, checked in by toemon, 14 years ago

ブロックオプションでjavascriptの有効性チェック Fixes #274

File size: 1.8 KB
Line 
1<?php
2if( ! defined( 'XOOPS_ROOT_PATH' ) ) exit ;
3$mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
4
5eval( '
6function b_'.$mydirname.'_calender_show($options){
7        return _b_calender_show($options) ;
8}
9function b_'.$mydirname.'_calender_edit($options){
10        return _b_calender_edit($options) ;
11}
12' ) ;
13       
14if( ! defined( 'XPRESS_CALENDAR_BLOCK_INCLUDED' ) ) {
15        define( 'XPRESS_CALENDAR_BLOCK_INCLUDED' , 1 ) ;
16
17        function _b_calender_edit($options)
18        {
19                $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
20                $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_calender_block.html' : trim( $options[1] );
21                $sun_color = empty( $options[2] ) ? '#DB0000' : $options[2] ;
22                $sat_color = empty( $options[3] ) ? '#004D99' : $options[3] ;
23                $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
24               
25                require_once(XOOPS_ROOT_PATH.'/modules/'.$mydirname.'/blocks/block_common.php');
26
27                $form  = javascript_check();
28                $form .= "MyDirectory <input type='text' name='options[0]' value='" . $mydirname . "' /><br />\n";
29                $form .= block_template_setting($mydirname,'options[1]',htmlspecialchars($this_template,ENT_QUOTES));
30                $form .= "<br />";
31                $form .= _MB_XP2_SUN_COLOR .": <input type='text' name='options[2]' value='" . $sun_color . "' /><br />\n";
32                $form .= _MB_XP2_SAT_COLOR .": <input type='text' name='options[3]' value='" . $sat_color . "' /><br />\n";
33
34                return $form;
35        }
36
37        function _b_calender_show($options)
38        {
39                $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
40                $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
41                $block_function_name = basename( __FILE__ );
42               
43                require_once $mydirpath.'/include/xpress_block_render.php';
44                return xpress_block_render($mydirname,$block_function_name,$options);
45
46        }
47       
48}
49
50?>
Note: See TracBrowser for help on using the repository browser.