Changeset 5909
- Timestamp:
- Mar 21, 2008, 2:59:59 AM (13 years ago)
- Location:
- OpenPNE/branches/work/ebihara/prj_deco_diary/webapp/modules/admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/work/ebihara/prj_deco_diary/webapp/modules/admin/init.inc
r4933 r5909 70 70 'page_update_c_profile', 71 71 'page_update_c_rank', 72 'page_update_deco', 72 73 'do_delete_c_banner', 73 74 'do_delete_c_cmd', … … 122 123 'do_update_skin_theme', 123 124 'do_update_top_banner_html', 125 'do_update_c_deco', 124 126 ), 125 127 … … 193 195 'page_user_analysis_date_month', 194 196 'page_user_analysis_generation', 197 'page_edit_deco', 195 198 'do_delete_c_banner', 196 199 'do_delete_c_cmd', … … 258 261 'do_update_skin_theme', 259 262 'do_update_top_banner_html', 263 'do_update_c_deco', 260 264 ), 261 265 ); -
OpenPNE/branches/work/ebihara/prj_deco_diary/webapp/modules/admin/page/edit_deco.php
r5797 r5909 11 11 $v = array(); 12 12 13 $v['c_config_decoration_list'] = db_admin_c_config_decoration_list(); 13 $c_config_decoration_list = db_admin_c_config_decoration_list(); 14 foreach ($c_config_decoration_list as $key => $value) { 15 $c_config_decoration_list[$key]['image_name'] = strtr($value['tagname'], ':', '_'); 16 } 17 $v['c_config_decoration_list'] = $c_config_decoration_list; 14 18 15 19 $this->set($v); -
OpenPNE/branches/work/ebihara/prj_deco_diary/webapp/modules/admin/templates/edit_deco.tpl
r5797 r5909 35 35 <tr> 36 36 <th>({$item.c_config_decoration_id})</th> 37 <td><img src=" " /></td>37 <td><img src="({t_img_url_skin filename=deco_`$item.image_name` w=32 h=32})" alt="({$item.caption})" /></td> 38 38 <td>({$item.caption})</td> 39 39 <td>({$item.sample|smarty:nodefaults})</td> -
OpenPNE/branches/work/ebihara/prj_deco_diary/webapp/modules/admin/templates/inc_header.tpl
r5138 r5909 130 130 <li><a href="?m=({$module_name})&a=page_({$hash_tbl->hash('list_c_cmd')})">CMD設定</a></li> 131 131 <li><a href="?m=({$module_name})&a=page_({$hash_tbl->hash('list_c_api')})">API設定</a></li> 132 ({if $smarty.const.OPENPNE_USE_DECORATION}) 133 <li><a href="?m=({$module_name})&a=page_({$hash_tbl->hash('edit_deco')})">文字装飾設定</a></li> 134 ({/if}) 132 135 </ul> 133 136 </li> -
OpenPNE/branches/work/ebihara/prj_deco_diary/webapp/modules/admin/templates/inc_subnavi_adminSNSConfig.tpl
r4216 r5909 14 14 <a href="?m=({$module_name})&a=page_({$hash_tbl->hash('list_c_cmd')})">CMD設定</a> | 15 15 <a href="?m=({$module_name})&a=page_({$hash_tbl->hash('list_c_api')})">API設定</a> | 16 ({if $smarty.const.OPENPNE_USE_DECORATION}) 17 <a href="?m=({$module_name})&a=page_({$hash_tbl->hash('edit_deco')})">文字装飾設定</a> | 18 ({/if}) 16 19 ({/strip}) 17 20 </div>
Note: See TracChangeset
for help on using the changeset viewer.