Code

Added ACL.tpl to modern theme
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Mar 2010 09:43:00 +0000 (09:43 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Mar 2010 09:43:00 +0000 (09:43 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16736 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/ihtml/themes/modern/acl.tpl [new file with mode: 0644]

diff --git a/gosa-core/ihtml/themes/modern/acl.tpl b/gosa-core/ihtml/themes/modern/acl.tpl
new file mode 100644 (file)
index 0000000..34e178e
--- /dev/null
@@ -0,0 +1,154 @@
+{if !$acl_readable}
+
+       <h2>{msgPool type=permView}</h2>
+
+{else}
+       {if $dialogState eq 'head'}
+       <h1>{t}Assigned ACL for current entry{/t}</h1>
+       {$aclList}
+
+
+       {if $acl_createable}
+       <button type='submit' name='new_acl'>{t}New ACL{/t}</button>
+
+       {/if}
+       {/if}
+
+       {if $dialogState eq 'create'}
+       <h1>{t}ACL type{/t}
+               {if !$acl_writeable}
+                       <select size="1" name="dummy_t" title="{t}Select an acl type{/t}" disabled>
+                               {html_options options=$aclTypes selected=$aclType}
+                               <option disabled>&nbsp;</option>
+                       </select>&nbsp;
+               {else} 
+                       <select size="1" name="aclType" title="{t}Select an acl type{/t}" onChange="document.mainform.submit()">
+                               {html_options options=$aclTypes selected=$aclType}
+                               <option disabled>&nbsp;</option>
+                       </select size=1>&nbsp;
+                       {if $javascript eq 'false'}
+                               <button type='submit' name='refresh'>{t}Apply{/t}</button>
+
+                       {/if}
+               {/if}
+       </h1>
+
+       <hr>
+       <div style='padding:3px;'>
+       {t}Additional filter options{/t}&nbsp; 
+               {if !$acl_writeable}
+               <input type='text' value='{$aclFilter}' disabled name='dummy_f' style='width:600px;'>
+               {else}
+               <input type='text' value='{$aclFilter}' name='aclFilter' style='width:600px;'>
+               {/if}
+       </div>
+
+       <table style="width:100%">
+        <tr>
+         <td style="width:48%">
+          {t}Use members from{/t}
+          <select name="target" onChange="document.mainform.submit()" size=1>
+                       {html_options options=$targets selected=$target}
+                       <option disabled>&nbsp;</option>
+          </select>
+          {if $javascript eq 'false'}<button type='submit' name='refresh'>{t}Apply{/t}</button>{/if}
+<br><br>
+         </td>
+         <td>
+         </td>
+         <td>
+         </td>
+        </tr>
+        <tr>
+         <td style="width:48%">
+          {t}Available members{/t}<br>
+               {if !$acl_writeable}
+          <select style="width:100%;height:180px;" disabled name="dummy_s[]" size="20" multiple title="{t}List message possible targets{/t}">
+                               {html_options options=$sources}
+                               <option disabled>&nbsp;</option>
+          </select>
+               {else}
+          <select style="width:100%;height:180px;" name="source[]" size="20" multiple title="{t}List message possible targets{/t}">
+                               {html_options options=$sources}
+                               <option disabled>&nbsp;</option>
+          </select>
+               {/if}
+         </td>
+         <td style="vertical-align:middle; " >
+               {if $acl_writeable}
+          <button type='submit' name='add'>&gt;</button>
+
+          <br><br>
+          <button type='submit' name='del'>&lt;</button>
+
+               {/if}
+         </td>
+         <td style="width:48%">
+          {t}Members{/t}<br>
+               {if !$acl_writeable}
+          <select style="width:100%;height:180px;" disabled name="dummy_r[]" size="20" multiple title="{t}List message recipients{/t}">
+                               {html_options options=$recipients}
+                               <option disabled>&nbsp;</option>
+          </select>
+
+               {else}
+          <select style="width:100%;height:180px;" name="recipient[]" size="20" multiple title="{t}List message recipients{/t}">
+                               {html_options options=$recipients}
+                               <option disabled>&nbsp;</option>
+          </select>
+               {/if}
+         </td>
+        </tr>
+       </table>
+
+       {if $aclType ne 'reset'}
+       {if $aclType ne 'role'}
+       {if $aclType ne 'base'}
+       <hr>
+
+       <h1>{t}List of available ACL categories{/t}</h1>
+       {$aclList}
+       {/if}
+       {/if}
+       {/if}
+
+       {if $aclType eq 'base'}
+       <hr>
+       <h1>{t}ACL for this object{/t}</h1>
+       {$aclSelector}
+       {/if}
+
+       {if $aclType eq 'role'}
+       <hr>
+       <h1>{t}Available roles{/t}</h1>
+       {$roleSelector}
+       {/if}
+
+       <hr>
+       <div style='text-align:right;margin-top:5px'>
+               {if $acl_writeable}
+               <button type='submit' name='submit_new_acl'>{t}Apply{/t}</button>
+
+               &nbsp;
+               {/if}
+               <button type='submit' name='cancel_new_acl'>{t}Cancel{/t}</button>
+
+       </div>
+       {/if}
+
+       {if $dialogState eq 'edit'}
+
+       <h1>{$headline}</h1>
+
+       {$aclSelector}
+
+       <hr>
+       <div style='text-align:right;margin-top:5px'>
+               <button type='submit' name='submit_edit_acl'>{t}Apply{/t}</button>
+
+               &nbsp;
+               <button type='submit' name='cancel_edit_acl'>{t}Cancel{/t}</button>
+
+       </div>
+       {/if}
+{/if}