mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 23:24:57 +00:00
- replaced icon for calendar
This commit is contained in:
parent
c45147b39f
commit
2ad09ca31b
|
@ -72,7 +72,7 @@ function checkForm()
|
|||
<td><?php //$this->printDateChooser(-1, "from");?>
|
||||
<span class="input-append date" id="fromdate" data-date="<?php echo $expdate; ?>" data-date-format="dd-mm-yyyy">
|
||||
<input class="span6" size="16" name="from" type="text" value="<?php echo $expdate; ?>">
|
||||
<span class="add-on"><i class="icon-th"></i></span>
|
||||
<span class="add-on"><i class="icon-calendar"></i></span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -81,7 +81,7 @@ function checkForm()
|
|||
<td><?php //$this->printDateChooser(-1, "to");?>
|
||||
<span class="input-append date" id="todate" data-date="<?php echo $expdate; ?>" data-date-format="dd-mm-yyyy">
|
||||
<input class="span6" size="16" name="to" type="text" value="<?php echo $expdate; ?>">
|
||||
<span class="add-on"><i class="icon-th"></i></span>
|
||||
<span class="add-on"><i class="icon-calendar"></i></span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -93,7 +93,19 @@ function checkForm()
|
|||
</tr>
|
||||
<tr>
|
||||
<td><?php printMLText("categories")?>:</td>
|
||||
<td><?php $this->printCategoryChooser("form1", $document->getCategories());?></td>
|
||||
<td>
|
||||
<select class="chzn-select" name="categories[]" multiple="multiple" data-placeholder="<?php printMLText('select_ind_reviewers'); ?>">
|
||||
<?php
|
||||
$categories = $dms->getDocumentCategories();
|
||||
foreach($categories as $category) {
|
||||
echo "<option value=\"".$category->getID()."\"";
|
||||
if(in_array($category, $document->getCategories()))
|
||||
echo " selected";
|
||||
echo ">".$category->getName()."</option>";
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
if ($folder->getAccessMode($user) > M_READ) {
|
||||
|
|
|
@ -78,7 +78,7 @@ function checkForm()
|
|||
<td><?php //$this->printDateChooser($event["start"], "from");?>
|
||||
<span class="input-append date" id="fromdate" data-date="<?php echo date('d-m-Y', $event["start"]); ?>" data-date-format="dd-mm-yyyy">
|
||||
<input class="span6" size="16" name="from" type="text" value="<?php echo date('d-m-Y', $event["start"]); ?>">
|
||||
<span class="add-on"><i class="icon-th"></i></span>
|
||||
<span class="add-on"><i class="icon-calendar"></i></span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -87,7 +87,7 @@ function checkForm()
|
|||
<td><?php //$this->printDateChooser($event["stop"], "to");?>
|
||||
<span class="input-append date" id="todate" data-date="<?php echo date('d-m-Y', $event["stop"]); ?>" data-date-format="dd-mm-yyyy">
|
||||
<input class="span6" size="16" name="to" type="text" value="<?php echo date('d-m-Y', $event["stop"]); ?>">
|
||||
<span class="add-on"><i class="icon-th"></i></span>
|
||||
<span class="add-on"><i class="icon-calendar"></i></span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -59,7 +59,7 @@ class LetoDMS_View_SetExpires extends LetoDMS_Bootstrap_Style {
|
|||
<td>
|
||||
<span class="input-append date" id="expirationdate" data-date="<?php echo $expdate; ?>" data-date-format="dd-mm-yyyy">
|
||||
<input class="span4" size="16" name="expdate" type="text" value="<?php echo $expdate; ?>">
|
||||
<span class="add-on"><i class="icon-th"></i></span>
|
||||
<span class="add-on"><i class="icon-calendar"></i></span>
|
||||
</span>
|
||||
<label class="checkbox inline">
|
||||
<input type="checkbox" name="expires" value="false"<?php if (!$document->expires()) print " checked";?>><?php printMLText("does_not_expire");?><br>
|
||||
|
|
Loading…
Reference in New Issue
Block a user