- Timestamp:
- Jun 13, 2006, 10:38:21 PM (18 years ago)
- Location:
- branches/branch-1_6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1_6/admin/cat_list.php
r1224 r1347 250 250 $categories[$row['id_uppercat']]['nb_subcats'] = $row['nb_subcats']; 251 251 } 252 253 $template->assign_block_vars('categories', array()); 252 254 } 253 255 … … 268 270 269 271 $template->assign_block_vars( 270 'categor y',272 'categories.category', 271 273 array( 272 274 'NAME' => $category['name'], … … 289 291 { 290 292 $template->assign_block_vars( 291 'categor y.delete',293 'categories.category.delete', 292 294 array( 293 295 'URL'=>$self_url.'&delete='.$category['id'] … … 299 301 { 300 302 $template->assign_block_vars( 301 'categor y.elements',303 'categories.category.elements', 302 304 array( 303 305 'URL'=>$base_url.'element_set&cat='.$category['id'] -
branches/branch-1_6/template/yoga/admin/cat_list.tpl
r1124 r1347 4 4 <h3>{CATEGORIES_NAV}</h3> 5 5 6 <!-- BEGIN categories --> 6 7 <form id="categoryOrdering" action="{F_ACTION}" method="post"> 7 8 … … 12 13 13 14 <ul class="categoryActions"> 14 <li><a href="{categor y.U_JUMPTO}" title="{lang:jump to category}"><img src="{themeconf:icon_dir}/category_jump-to.png" class="button" alt="{lang:jump to}" /></a></li>15 <li><a href="{categor y.U_EDIT}" title="{lang:edit category informations}"><img src="{themeconf:icon_dir}/category_edit.png" class="button" alt="{lang:edit}"/></a></li>15 <li><a href="{categories.category.U_JUMPTO}" title="{lang:jump to category}"><img src="{themeconf:icon_dir}/category_jump-to.png" class="button" alt="{lang:jump to}" /></a></li> 16 <li><a href="{categories.category.U_EDIT}" title="{lang:edit category informations}"><img src="{themeconf:icon_dir}/category_edit.png" class="button" alt="{lang:edit}"/></a></li> 16 17 <!-- BEGIN elements --> 17 <li><a href="{categor y.elements.URL}" title="{lang:manage category elements}"><img src="{themeconf:icon_dir}/category_elements.png" class="button" alt="{lang:elements}" /></a></li>18 <li><a href="{categories.category.elements.URL}" title="{lang:manage category elements}"><img src="{themeconf:icon_dir}/category_elements.png" class="button" alt="{lang:elements}" /></a></li> 18 19 <!-- END elements --> 19 <li><a href="{categor y.U_CHILDREN}" title="{lang:manage sub-categories}"><img src="{themeconf:icon_dir}/category_children.png" class="button" alt="{lang:sub-categories}" /></a></li>20 <li><a href="{categories.category.U_CHILDREN}" title="{lang:manage sub-categories}"><img src="{themeconf:icon_dir}/category_children.png" class="button" alt="{lang:sub-categories}" /></a></li> 20 21 <!-- BEGIN permissions --> 21 <li><a href="{categor y.permissions.URL}" title="{lang:edit category permissions}" ><img src="{themeconf:icon_dir}/category_permissions.png" class="button" alt="{lang:permissions}" /></a></li>22 <li><a href="{categories.category.permissions.URL}" title="{lang:edit category permissions}" ><img src="{themeconf:icon_dir}/category_permissions.png" class="button" alt="{lang:permissions}" /></a></li> 22 23 <!-- END permissions --> 23 24 <!-- BEGIN delete --> 24 <li><a href="{categor y.delete.URL}" title="{lang:delete category}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/category_delete.png" class="button" alt="{lang:delete}" /></a></li>25 <li><a href="{categories.category.delete.URL}" title="{lang:delete category}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/category_delete.png" class="button" alt="{lang:delete}" /></a></li> 25 26 <!-- END delete --> 26 27 </ul> 27 28 28 <p><strong><a href="{categor y.U_CHILDREN}" title="{lang:manage sub-categories}">{category.NAME}</a></strong></p>29 <p><strong><a href="{categories.category.U_CHILDREN}" title="{lang:manage sub-categories}">{categories.category.NAME}</a></strong></p> 29 30 30 31 <p> 31 32 <label> 32 33 {lang:Position} : 33 <input type="text" size="4" name="catOrd[{categor y.ID}]" maxlength="4" value="{category.RANK}" />34 <input type="text" size="4" name="catOrd[{categories.category.ID}]" maxlength="4" value="{categories.category.RANK}" /> 34 35 </label> 35 36 </p> … … 45 46 46 47 </form> 48 <!-- END categories --> 47 49 48 50 <form id="addVirtual" action="{F_ACTION}" method="post">
Note: See TracChangeset
for help on using the changeset viewer.