[109] | 1 | <?php
|
---|
| 2 | if( ! defined( 'XOOPS_ROOT_PATH' ) ) exit ;
|
---|
| 3 | $mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
|
---|
| 4 |
|
---|
| 5 | eval( '
|
---|
| 6 | function b_'.$mydirname.'_popular_show($options){
|
---|
| 7 | return _b_popular_show($options) ;
|
---|
| 8 | }
|
---|
| 9 | function b_'.$mydirname.'_popular_edit($options){
|
---|
| 10 | return _b_popular_edit($options) ;
|
---|
| 11 | }
|
---|
| 12 | ' ) ;
|
---|
| 13 |
|
---|
| 14 | if( ! defined( 'XPRESS_POPULAR_BLOCK_INCLUDED' ) ) {
|
---|
| 15 | define( 'XPRESS_POPULAR_BLOCK_INCLUDED' , 1 ) ;
|
---|
| 16 | function _b_popular_edit($options)
|
---|
| 17 | {
|
---|
| 18 | $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
|
---|
[195] | 19 | $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_popular_posts_block.html' : trim( $options[1] );
|
---|
[120] | 20 | $disp_count = empty( $options[2] ) ? '10' : $options[2] ;
|
---|
| 21 | $show_month_range = empty( $options[3] ) ? '0' : $options[3] ;
|
---|
[142] | 22 | $date_format = empty( $options[4] ) ? '' : $options[4] ;
|
---|
| 23 | $time_format = empty( $options[5] ) ? '' : $options[5] ;
|
---|
| 24 | $tag_select = $options[6] ;
|
---|
| 25 | $selected = array_slice($options, 7); // get allowed cats
|
---|
| 26 |
|
---|
[109] | 27 | $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
|
---|
| 28 |
|
---|
| 29 | require_once(XOOPS_ROOT_PATH.'/modules/'.$mydirname.'/blocks/block_common.php');
|
---|
| 30 |
|
---|
| 31 | $form = "MyDirectory <input type='text' name='options[0]' value='" . $mydirname . "' /><br />\n";
|
---|
[142] | 32 | $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />\n";
|
---|
| 33 | $form .= "<br />\n";
|
---|
[183] | 34 | $form .= _MB_XP2_COUNT .": <input type='text' name='options[2]' value='" . $disp_count . "' /><br />\n";
|
---|
| 35 | $form .= _MB_XP2_MONTH_RANGE .": <input type='text' name='options[3]' value='" . $show_month_range . "' /><br />\n";
|
---|
| 36 | $form .= _MB_XP2_DATE_FORMAT .": <input type='text' name='options[4]' value='" . $date_format . "' /><br />\n";
|
---|
| 37 | $form .= _MB_XP2_TIME_FORMAT .": <input type='text' name='options[5]' value='" . $time_format . "' /><br />\n";
|
---|
[109] | 38 | $form .= "<br />\n";
|
---|
[183] | 39 | $form .= _MB_XP2_TAGS_SELECT .": <input type='text' name='options[6]' value='" . $tag_select . "' /><br />\n";
|
---|
| 40 | $form .= _MB_XP2_CATS_SELECT ."<br />\n";
|
---|
[109] | 41 | $isAll = (count($selected)==0||empty($selected[0]))?true:false;
|
---|
[142] | 42 | $form .= " <select name=\"options[]\" multiple=\"multiple\">";
|
---|
[109] | 43 | $form .= "<option value=\"0\" ";
|
---|
| 44 | if ($isAll) $form .= " selected=\"selected\"";
|
---|
[183] | 45 | $form .= ">"._MB_XP2_ALL ."</option>";
|
---|
[109] | 46 | ob_start();
|
---|
| 47 | dropdown_cats_options('ID','asc',$selected);
|
---|
| 48 | $list_str = ob_get_contents();
|
---|
| 49 | ob_end_clean();
|
---|
| 50 | $form .= $list_str. "</select><br />";
|
---|
| 51 | // $form .="<br /><input type='text' size='60' name='options[5]' value='".htmlspecialchars($this_template,ENT_QUOTES)."' />";
|
---|
| 52 |
|
---|
| 53 | return $form;
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | function _b_popular_show($options)
|
---|
| 57 | {
|
---|
| 58 | $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
|
---|
| 59 | $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
|
---|
| 60 | $block_function_name = basename( __FILE__ );
|
---|
| 61 |
|
---|
| 62 | require_once $mydirpath.'/include/xpress_block_render.php';
|
---|
| 63 | return xpress_block_render($mydirname,$block_function_name,$options);
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 | ?> |
---|