Changeset 497 for trunk/Modules/IS/IS.php
- Timestamp:
- Mar 3, 2013, 1:03:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/IS.php
r485 r497 219 219 $Output .= '<ul class="ActionMenu">'; 220 220 $Output .= '<li><a href="?a=add&t='.$Table.'"><img alt="Přidat" title="Přidat" src="'. 221 221 $this->System->Link('/images/add.png').'"/>Přidat</a></li>'; 222 222 $Output .= '<li><a href="?a=list&t='.$Table.'"><img alt="Seznam" title="Seznam" src="'. 223 $this->System->Link('/images/list.png').'"/>Seznam</a></li>'; 223 $this->System->Link('/images/list.png').'"/>Seznam</a></li>'; 224 if(array_key_exists('Actions', $FormClass)) 225 { 226 foreach($FormClass['Actions'] as $Action) 227 $Output .= '<li><a href="'.$this->System->Link($Action['URL']).'"><img alt="'.$Action['Caption'].'" title="'.$Action['Caption'].'" src="'. 228 $this->System->Link('/images/action.png').'"/>'.$Action['Caption'].'</a></li>'; 229 } 224 230 $Output .= '</ul>'; 225 231 return($Output);
Note:
See TracChangeset
for help on using the changeset viewer.