Source for file delete.phtml

Documentation is available at delete.phtml

  1. {{wrap with="_cms/popup.phtml" into="content_zone"}}
  2.  
  3.   <h1 class='delete'>Удалить пользователей</h1>
  4.  
  5.   {{form id='delete_form' name='delete_form' method='post' runat='server' class="list"}}
  6.  
  7.     <?php $this->items_to_deletelmbActiveRecord::findByIds('lmbCmsUser',$this->request->get('ids'));?>
  8.  
  9.     <table>
  10.     <tr>
  11.       <th class='selector'>{{include file='_cms/selector.phtml'/}}</th>
  12.       <th>Логин</th>
  13.       <th>Имя</th>
  14.     </tr>
  15.     {{list using="{$#items_to_delete}" parity="{$parity}"}}
  16.       {{list:item}}
  17.         <tr class='{$parity}'>
  18.           <td>{{input type='checkbox' name='ids[]' value='{$item.id}' checked='true'/}}</td>
  19.           <td>{$item.login}</td>
  20.           <td>{$item.name}</td>
  21.         </tr>
  22.       {{/list:item}}
  23.     {{/list}}
  24.     </table>
  25.     {{include file='_cms/delete_common_elements.phtml'/}}
  26.  
  27.   {{/form}}
  28. {{/wrap}}

Documentation generated on Wed, 07 Jan 2009 03:46:16 +0300 by phpDocumentor 1.3.2