XPressME Integration Kit

Trac

Changeset 124


Ignore:
Timestamp:
Mar 19, 2009, 11:27:39 PM (15 years ago)
Author:
toemon
Message:

サイドバーブロック実装 #36 bump Ver0.10

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/xpress_templates_make.php

    r122 r124  
    8585                'category_block.html', 
    8686                'meta_block.html' , 
     87                'sidebar_block.html' , 
    8788                'index.html', 
    8889        ); 
  • trunk/language/ja_utf8/modinfo.php

    r122 r124  
    2929        define("_MI_XPRESS_BLOCK_CATEGORY","カテゴリー"); 
    3030        define("_MI_XPRESS_BLOCK_META","メタ情報"); 
     31        define("_MI_XPRESS_BLOCK_SIDEBAR","サイドバー"); 
    3132         
    3233        // Notify Categories 
  • trunk/wp-content/themes/xpress_default/blocks/block_style.css

    r122 r124  
    318318 
    319319} 
     320 
     321/*********** sidebar block ***************/ 
     322.xpress_sidebar_block { 
     323 
     324} 
  • trunk/xoops_version.php

    r122 r124  
    3131$modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ; 
    3232$modversion['description'] = constant( '_MI_XPRESS_DESC'); 
    33 $modversion['version'] = "0.09"; 
     33$modversion['version'] = "0.10"; 
    3434$modversion['credits'] = "Wordpress DEV (http://wordpress.org/) XPressME DEV Toemon) (http://www.toemon.com) ;"; 
    3535$modversion['author'] = "toemon (http://www.toemon.com)"; 
     
    4040 
    4141// status 
    42 $modversion['codename'] = "r120"; 
     42$modversion['codename'] = "r124"; 
    4343 
    4444// onInstall, onUpdate, onUninstall 
     
    235235        'func_num'              => $b_no,        
    236236); 
     237$b_no++; 
     238$modversion['blocks'][$b_no] = array( 
     239        'file'                  => 'sidebar_block.php' , 
     240        'name'                  => constant('_MI_XPRESS_BLOCK_SIDEBAR') , 
     241        'description'   => '' , 
     242        'show_func'     => "b_". $mydirname . "_sidebar_show" , 
     243        'edit_func'     => '' , 
     244        'options'               => '' , 
     245        'can_clone'             => false , 
     246        'func_num'              => $b_no,        
     247); 
    237248 
    238249 
Note: See TracChangeset for help on using the changeset viewer.