Changeset 498 for trunk/Modules/IS/IS.php
- Timestamp:
- Mar 3, 2013, 6:02:17 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/IS.php
r497 r498 212 212 $this->System->Link('/images/edit.png').'"/></a>'. 213 213 '<a href="?a=delete&t='.$Table.'&id='.$Row['Id'].'"><img alt="Smazat" title="Smazat" src="'. 214 $this->System->Link('/images/delete.png').'" onclick="return confirmAction(\'Opravdu smazat položku?\');"/></a></td>'; 215 $Output .= '</tr>'; 214 $this->System->Link('/images/delete.png').'" onclick="return confirmAction(\'Opravdu smazat položku?\');"/></a>'; 215 if(array_key_exists('ItemActions', $FormClass)) 216 { 217 foreach($FormClass['ItemActions'] as $Action) 218 $Output .= '<a href="'.$this->System->Link($Action['URL']).'&id='.$Row['Id'].'"><img alt="'.$Action['Caption'].'" title="'.$Action['Caption'].'" src="'. 219 $this->System->Link('/images/action.png').'"/></a>'; 220 } 221 $Output .= '</td></tr>'; 216 222 } 217 223 $Output .= '</table>';
Note:
See TracChangeset
for help on using the changeset viewer.