XPressME Integration Kit

Trac

Changes in / [20:30]


Ignore:
Location:
/trunk
Files:
39 added
1 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • /trunk/include/xpress_render.php

    r20 r30  
    3535} 
    3636 
     37// get sidebar rendaring  
     38function get_sidebar_rander($name = null) 
     39{ 
     40        $templates = array(); 
     41        if ( isset($name) ) 
     42                $templates[] = "sidebar-{$name}.php"; 
     43 
     44        $templates[] = "sidebar.php"; 
     45 
     46        $link= locate_template($templates, false); 
     47        if ('' == $link) 
     48                $link =  get_theme_root() . '/default/sidebar.php'; 
     49 
     50        ob_start(); 
     51                require($link); 
     52                $sidebar = ob_get_contents(); 
     53        ob_end_clean(); 
     54        return $sidebar; 
     55} 
     56 
    3757// < body > tag is pulled out from the header of html contents.  
    3858function get_body($contents) 
    3959{ 
     60        $xpess_config = new XPressME_Class(); 
    4061        $pattern = "<body[^>]*?>(.*)<\/body>"; 
    4162        preg_match("/".$pattern."/s",  $contents, $body_matches); 
    4263        $body = $body_matches[1]; 
     64 
     65        if (!$xpess_config->is_theme_sidebar_disp){ 
     66                $side_panel = get_sidebar_rander(); 
     67                        $body = str_replace($side_panel,'',$body); 
     68        } 
    4369        return $body; 
    4470} 
  • /trunk/wp-config.php

    r20 r30  
    11<?php 
    22require dirname( __FILE__ ).'/include/include_xoops_define.php' ; 
     3require dirname( __FILE__ ).'/include/set_cash_cookie_path.php' ; 
     4require dirname( __FILE__ ).'/include/pluggable-override.php' ; 
    35 
    46mb_language('Japanese'); 
  • /trunk/wp-content/plugins/xpressme/language/xpressme-ja.po

    r20 r30  
    33"Project-Id-Version: fckeditor for xpress\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2008-12-08 16:40+0900\n" 
     5"PO-Revision-Date: 2008-12-15 17:50+0900\n" 
    66"Last-Translator: toemon <toychee@toemon.com>\n" 
    77"Language-Team: \n" 
     
    1212"X-Poedit-Country: JAPAN\n" 
    1313"X-Poedit-KeywordsList: _e;__\n" 
    14 "X-Poedit-Basepath: C:\\Data\\toemon.com\\Xpress\\FCK\\fckeditor_for_xpress_lang\n" 
    15 "X-Poedit-SearchPath-0: fckeditor_for_xpress\n" 
     14"X-Poedit-Basepath: C:\\xampp\\htdocs\\cube\\modules\\xpress2\\wp-content\\plugins\\xpressme\n" 
     15"X-Poedit-SearchPath-0: .\n" 
    1616 
     17#: xpressme_class.php:20 
    1718msgid "XPressME Settings" 
    1819msgstr "XPressME設定" 
    1920 
     21#: xpressme_class.php:73 
     22#: xpressme_class.php:118 
     23#: xpressme_class.php:123 
     24msgid "YES" 
     25msgstr "はい" 
     26 
     27#: xpressme_class.php:74 
     28#: xpressme_class.php:119 
     29#: xpressme_class.php:124 
     30msgid "NO" 
     31msgstr "いいえ" 
     32 
     33#: xpressme_class.php:108 
    2034msgid "XPressME Configuration Page" 
    2135msgstr "XPressMEの設定ページ" 
    2236 
     37#: xpressme_class.php:112 
    2338msgid "Media Upload Base Path" 
    2439msgstr "メディアアップロードのベースパス設定" 
    2540 
     41#: xpressme_class.php:113 
    2642msgid "Use XOOPS UPLOAD PATH" 
    2743msgstr "XOOPSのアップロードパスを使用する。" 
    2844 
     45#: xpressme_class.php:114 
    2946msgid "USE WordPress BASE_PATH" 
    3047msgstr "WordPressのベースパスを使用する。" 
    3148 
     49#: xpressme_class.php:117 
     50msgid "Thema Sidebar Display" 
     51msgstr "テーマ表示時にサイドバー表示する。" 
     52 
     53#: xpressme_class.php:122 
     54msgid "The change tracking of the post is preserved" 
     55msgstr "投稿の変更履歴を有効にする。" 
     56 
     57#: xpressme_class.php:131 
     58msgid "Update Config" 
     59msgstr "更新" 
     60 
     61#: xpressme_class.php:132 
     62msgid "Preset Config" 
     63msgstr "プリセット" 
     64 
  • /trunk/wp-content/plugins/xpressme/xpressme.php

    r20 r30  
    1414add_action('admin_head', array(&$xpessme, 'add_admin_head')); 
    1515add_filter("upload_dir",array(&$xpessme, 'xpress_upload_filter'),       1);             // Change wp-include/wp_upload_dir() 
     16if (!$xpressme->is_save_post_revision){ 
     17        remove_action( 'pre_post_update', 'wp_save_post_revision' );                    // Not Save Post Revision 
     18} 
    1619 
    1720?> 
  • /trunk/wp-content/plugins/xpressme/xpressme_class.php

    r20 r30  
    66        var $pluginName = 'xpressme';    
    77        var $is_use_xoops_upload_path; 
    8          
     8        var $is_theme_sidebar_disp; 
     9        var $is_save_post_revision; 
    910        //constructor 
    1011        function XPressME_Class() 
     
    3031        { 
    3132                $this->is_use_xoops_upload_path = true; 
     33                $this->is_theme_sidebar_disp = true; 
     34                $this->is_save_post_revision = true; 
    3235        } 
    3336         
     
    4952        { 
    5053                $write_options = array ( 
    51                         'is_use_xoops_upload_path' => $this->is_use_xoops_upload_path  
     54                        'is_use_xoops_upload_path' => $this->is_use_xoops_upload_path , 
     55                        'is_theme_sidebar_disp' => $this->is_theme_sidebar_disp  
    5256                ); 
    5357                if ($mode == 'add_new') { 
     
    6165        { 
    6266                $this->is_use_xoops_upload_path = stripslashes(trim($_POST['ch_is_use_xoops_upload_path'])); 
     67                $this->is_theme_sidebar_disp = stripslashes(trim($_POST['ch_is_theme_sidebar_disp'])); 
     68                $this->is_save_post_revision = stripslashes(trim($_POST['ch_is_save_post_revision'])); 
    6369        } 
     70         
     71        function yes_no_radio_option($option_name,$option_desc,$yes = '',$no= ''){ 
     72        if (empty( $yes ))  $yes = __('YES','xpressme') ; 
     73        if (empty( $no ))  $no = __('NO','xpressme') ; 
     74        $value = $this->{$option_name}; 
     75        $ans_name = 'ch_' . $option_name; 
     76         
     77        $form  =  "<tr>\n"; 
     78        $form .=  '<th><label for="images_to_link">' . $option_desc . "</label></th>\n"; 
     79        $form .=  "<td>\n"; 
     80        if ($value){ 
     81                $form .= "<label><input type='radio' name='". $ans_name . "' value='1' checked='checked' />" . $yes ."</label><br />\n"; 
     82                $form .= "<label><input type='radio' name='". $ans_name . "' value='0' />". $no . "</label>\n"; 
     83        }else{ 
     84                $form .= "<label><input type='radio' name='". $ans_name . "' value='1' />" . $yes . "</label><br />\n"; 
     85                $form .= "<label><input type='radio' name='". $ans_name . "' value='0' checked='checked' />". $no ."</label>\n"; 
     86        } 
     87        $form .=  "</td>\n"; 
     88        $form .=  "</tr><tr>\n"; 
     89                 
     90    return $form; 
     91         
     92} 
    6493                 
    6594        function option_page() 
     
    74103 
    75104                 
    76                 echo    '<div class="wrap">'; 
    77                 echo            '<div id="icon-options-general" class="icon32"><br /></div>'; 
    78                 echo            '<h2>' . __('XPressME Configuration Page', 'xpressme') . '</h2> '; 
     105                echo    '<div class="wrap">'."\n"; 
     106                echo            '<div id="icon-options-general" class="icon32"><br /></div>'."\n"; 
     107                echo            '<h2>' . __('XPressME Configuration Page', 'xpressme') . "</h2>\n"; 
     108                echo            '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n" ; 
     109                echo                    '<table class="form-table">'."\n"; 
     110                echo                            $this->yes_no_radio_option('is_use_xoops_upload_path', 
     111                                                                                                __('Media Upload Base Path','xpressme'), 
     112                                                                                                __('Use XOOPS UPLOAD PATH','xpressme'), 
     113                                                                                                __('USE WordPress BASE_PATH','xpressme') 
     114                                                                                                ); 
     115                echo                            $this->yes_no_radio_option('is_theme_sidebar_disp', 
     116                                                                                                __('Thema Sidebar Display','xpressme'), 
     117                                                                                                __('YES','xpressme'), 
     118                                                                                                __('NO','xpressme') 
     119                                                                                                ); 
     120                echo                            $this->yes_no_radio_option('is_save_post_revision', 
     121                                                                                                __('The change tracking of the post is preserved','xpressme'), 
     122                                                                                                __('YES','xpressme'), 
     123                                                                                                __('NO','xpressme') 
     124                                                                                                ); 
     125                         
     126//              $this->is_use_xoops_upload_path_html(); 
     127                echo                    "</table>\n"; 
     128                 
     129                echo            '<p class="submit">'."\n"; 
     130                echo            '<input type="submit" value= "' . __('Update Config', 'xpressme') . '" name="submit_update" />' ."\n"; 
     131                echo            '<input type="submit" value= "' . __('Preset Config', 'xpressme') . '" name="submit_reset" />' ."\n"; 
     132                echo            "</p>\n"; 
    79133 
    80                 echo            '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">' ; 
    81                 echo                    '<table class="form-table">'; 
    82                                                         $this->is_use_xoops_upload_path_html(); 
    83                 echo                    '</table>'; 
    84                  
    85                 echo            '<p class="submit">'; 
    86                 echo            '<input type="submit" value= "' . __('Update Config', 'xpressme') . '" name="submit_update" />'; 
    87                 echo            '<input type="submit" value= "' . __('Preset Config', 'xpressme') . '" name="submit_reset" />'; 
    88                 echo            '</p>'; 
    89  
    90                 echo            '</form>' ; 
    91                 echo    '</div>'; 
     134                echo            "</form>\n" ; 
     135                echo    "</div>\n"; 
    92136        } 
    93  
    94         function is_use_xoops_upload_path_html() 
    95         { 
    96                  
    97                 echo '<tr>'; 
    98                 echo '<th><label for="images_to_link">' . __('Media Upload Base Path','xpressme') . '</label></th>'; 
    99                 echo '<td>'; 
    100  
    101                 if ($this->is_use_xoops_upload_path == true){ 
    102                         echo '<label><input type="radio" name="ch_is_use_xoops_upload_path"  value="1" checked="checked" /> ' . __('Use XOOPS UPLOAD PATH','xpressme') .'</label><br />'; 
    103                         echo '<label><input type="radio" name="ch_is_use_xoops_upload_path" value="0" />' . __('USE WordPress BASE_PATH','xpressme') . '</label>'; 
    104                 } else { 
    105                         echo '<label><input type="radio" name="ch_is_use_xoops_upload_path"  value="1" /> ' . __('Use XOOPS UPLOAD PATH','xpressme') .'</label><br />'; 
    106                         echo '<label><input type="radio" name="ch_is_use_xoops_upload_path" value="0" checked="checked" />' . __('USE WordPress BASE_PATH','xpressme') . '</label>'; 
    107                 } 
    108                 echo '</td>'; 
    109                 echo '</tr><tr>'; 
    110                  
    111         } 
    112  
    113137         
    114138        function xpress_upload_filter($uploads) 
     
    132156                return $uploads; 
    133157        }        
     158 
    134159} 
    135160?> 
  • /trunk/xoops_version.php

    r20 r30  
    3232$modversion['description'] = constant( '_MI_XPRESS_DESC'); 
    3333$modversion['version'] = "0.01"; 
    34 $modversion['credits'] = "XPressME DEV Toemon) (http://www.toemon.com) Wordpress DEV (http://wordpress.org/);"; 
     34$modversion['credits'] = "Wordpress DEV (http://wordpress.org/) XPressME DEV Toemon) (http://www.toemon.com) ;"; 
    3535$modversion['author'] = "toemon (http://www.toemon.com)"; 
    3636$modversion['license'] = "GPL see LICENSE"; 
    37 $modversion['official'] = r18 ; 
     37$modversion['official'] = 0 ; 
    3838$modversion['image'] =  'module_icon.php' ; 
    3939$modversion['dirname'] = $mydirname; 
     
    7171 
    7272// Search 
    73 //$modversion['hasSearch'] = 1 ; 
    74 //$modversion['search']['file'] = 'include/search.php' ; 
    75 //$modversion['search']['func'] = $mydirname.'_global_search' ; 
     73$modversion['hasSearch'] = 1 ; 
     74$modversion['search']['file'] = 'include/search.php' ; 
     75$modversion['search']['func'] = $mydirname.'_global_search' ; 
    7676//Admin things 
    7777$modversion['hasAdmin'] = 0; 
Note: See TracChangeset for help on using the changeset viewer.