git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
<h2>{i18n}Dynamic Conditions{/i18n}</h2>
|
|
|
|
<p class="descriptiveText">{i18n}Creating a Dynamic Condition involves setting up criteria that filters content in the DMS for the purposes of selectively assigning permissions associated with the Dynamic Condition, according to the specified criteria. Dynamic conditions are assigned on the folder's Permissions management page in Browse Documents. Dynamic Conditions are also used to create Guard permissions, which are required to perform transitions on Workflows. {/i18n}</p>
|
|
|
|
<form action="{$smarty.server.PHP_SELF}" method="POST">
|
|
<fieldset>
|
|
<legend>{i18n}Create a new condition{/i18n}</legend>
|
|
<div>
|
|
<input type="hidden" name="action" value="new" />
|
|
<input type="submit" name="submit" value="{i18n}New{/i18n}" />
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
{if $conditions}
|
|
<h2>{i18n}Existing Conditions{/i18n}</h2>
|
|
|
|
<table class="listing">
|
|
<thead>
|
|
<tr>
|
|
<th>{i18n}Condition Name{/i18n}</th>
|
|
<th>{i18n}Edit{/i18n}</th>
|
|
<th>{i18n}Delete{/i18n}</th>
|
|
<th>{i18n}View Results{/i18n}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach item=oCondition from=$conditions}
|
|
<tr>
|
|
<td>{$oCondition->getName()}</td>
|
|
<td><a href="{addQS}action=edit&fSavedSearchId={$oCondition->getId()}{/addQS}" class="ktAction ktEdit">{i18n}Edit{/i18n}</a></td>
|
|
<td><a href="{addQS}action=delete&fSavedSearchId={$oCondition->getId()}{/addQS}" class="ktAction ktDelete">{i18n}Delete{/i18n}</a></td>
|
|
<td><a href="{"booleanSearch"|generateControllerUrl}&qs[action]=performSearch&qs[fSavedSearchId]={$oCondition->getId()}">{i18n}Run Condition{/i18n}</a></td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
{else}
|
|
<div class="ktInfoMessage"><span>{i18n}No Conditions have been defined.{/i18n}</span></div>
|
|
{/if}
|