blob: 2893b0cd354bd4ce31eb45e4ccb3b42fe8f35c6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{strip}
{if $editPigeonholesEnabled && $gBitUser->hasPermission( 'p_pigeonholes_insert_member' )}
<div class="form-group">
{formlabel label="Categorize" for="pigeonholes"}
{if $pigeonPathList|@count ne 0}
{forminput}
{if $pigeonPathList|@count < $gBitSystem->getConfig( 'pigeonholes_scrolling_list_number' )}
{foreach from=$pigeonPathList key=pigeonId item=path}
<label>
<input type="checkbox" value="{$pigeonId}" {if $path.0.selected}checked="checked" {/if}name="pigeonholes[pigeonhole][]" />
{foreach from=$path item=node}
{if $node.parent_id} »{/if} {$node.title|escape}
{/foreach}
<br />
</label>
{/foreach}
{else}
<select name="pigeonholes[pigeonhole][]" id="pigeonholes" multiple="multiple" size="6">
{foreach from=$pigeonPathList key=pigeonId item=path}
<option value="{$pigeonId}" {if $path.0.selected}selected="selected"{/if}>
{foreach from=$path item=node}
{if $node.parent_id} »{/if} {$node.title|escape}
{/foreach}
</option>
{/foreach}
</select>
{/if}
{/forminput}
{else}
{forminput}
<p>{tr}There are no categories available at the moment.{/tr}</p>
{if $gBitUser->isAdmin()}
{smartlink ititle="Create Category" ipackage="pigeonholes" ifile="edit_pigeonholes.php"}
{/if}
{/forminput}
{/if}
</div>
{/if}
{/strip}
|