106 lines
5.3 KiB
PHTML
106 lines
5.3 KiB
PHTML
<form id="smart-playlist-form" method="post" action="">
|
|
<fieldset class='sp-scrollable toggle <?php echo $this->openOption ? "" : "closed"?>' id='smart_playlist_options'>
|
|
<legend style='cursor: pointer;'><span class='ui-icon ui-icon-triangle-2-n-s'></span>Smart Playlist Options</legend>
|
|
<dl class='zend_form'>
|
|
<div id='sp-success' class='success' style='display:none'></div>
|
|
<dd id='sp_type-element'>
|
|
<label class='sp-label'>
|
|
<?php echo $this->element->getElement('sp_type')->getLabel() ?>
|
|
<span class='playlist_type_help_icon'></span>
|
|
</label>
|
|
<?php $i=0;
|
|
$value = $this->element->getElement('sp_type')->getValue();
|
|
foreach ($this->element->getElement('sp_type')->getMultiOptions() as $radio) : ?>
|
|
|
|
<label class='sp-label' for='sp_type-<?php echo $i?>'>
|
|
<input type="radio" value="<?php echo $i ?>" id="sp_type-<?php echo $i ?>" name="sp_type" <?php if($i == $value){echo 'checked="checked"';}?> ><?php echo $radio ?>
|
|
</label>
|
|
<?php $i = $i + 1; ?>
|
|
<?php endforeach; ?>
|
|
|
|
<?php echo $this->element->getElement('save_button') ?>
|
|
<?php echo $this->element->getElement('generate_button') ?>
|
|
<?php echo $this->element->getElement('shuffle_button') ?>
|
|
</dd>
|
|
|
|
<dd id='sp_criteria-element'>
|
|
<?php for ($i = 0; $i < $this->criteriasLength; $i++) {?>
|
|
<div <?php if (($i > 0) && ($this->element->getElement("sp_criteria_field_".$i)->getAttrib('disabled') == 'disabled')) {
|
|
echo 'style=display:none';
|
|
} ?>>
|
|
<?php echo $this->element->getElement("sp_criteria_field_".$i) ?>
|
|
<a class='ui-button sp-ui-button-icon-only sp_no_margins' id='modifier_add_<?php echo $i ?>'>
|
|
<span class='ui-icon ui-icon-plusthick'></span>
|
|
</a>
|
|
<?php echo $this->element->getElement("sp_criteria_modifier_".$i) ?>
|
|
<?php echo $this->element->getElement("sp_criteria_value_".$i) ?>
|
|
<span class='sp_text_font' id="extra_criteria" <?php echo $this->element->getElement("sp_criteria_extra_".$i)->getAttrib("disabled") == "disabled"?'style="display:none;"':""?>> to <?php echo $this->element->getElement('sp_criteria_extra_'.$i) ?></span>
|
|
<a class='ui-button sp-ui-button-icon-only' id='criteria_remove_<?php echo $i ?>'>
|
|
<span class='ui-icon ui-icon-closethick'></span>
|
|
</a>
|
|
<br />
|
|
</div>
|
|
|
|
<?php for ($j = 0; $j < $this->modRowMap[$i]; $j++) {?>
|
|
<div>
|
|
<?php echo $this->element->getElement("sp_criteria_field_".$i."_".$j) ?>
|
|
<a class='ui-button sp-ui-button-icon-only sp_no_margins' id='modifier_add_<?php echo $i ?>'>
|
|
<span class='ui-icon ui-icon-plusthick'></span>
|
|
</a>
|
|
<?php echo $this->element->getElement("sp_criteria_modifier_".$i."_".$j) ?>
|
|
<?php echo $this->element->getElement("sp_criteria_value_".$i."_".$j) ?>
|
|
<span class='sp_text_font' id="extra_criteria" <?php echo $this->element->getElement("sp_criteria_extra_".$i."_".$j)->getAttrib("disabled") == "disabled"?'style="display:none;"':""?>> to <?php echo $this->element->getElement('sp_criteria_extra_'.$i."_".$j) ?></span>
|
|
<a class='ui-button sp-ui-button-icon-only' id='criteria_remove_<?php echo $i ?>'>
|
|
<span class='ui-icon ui-icon-closethick'></span>
|
|
</a>
|
|
<br />
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php } ?>
|
|
<br />
|
|
</dd>
|
|
|
|
<dd id='sp_limit-element'>
|
|
<span class='sp_text_font'><?php echo $this->element->getElement('sp_limit_value')->getLabel() ?></span>
|
|
<?php echo $this->element->getElement('sp_limit_value')?>
|
|
<?php echo $this->element->getElement('sp_limit_options') ?>
|
|
<br /><br />
|
|
</dd>
|
|
<div class='sp_text_font sp_text_font_bold'>
|
|
<span id='sp_pool_count' class='sp_text_font sp_text_font_bold'>
|
|
<?php
|
|
if ($this->poolCount > 1) {
|
|
echo $this->poolCount;
|
|
?>
|
|
files meet the criteria
|
|
</span>
|
|
<span class='checked-icon sp-checked-icon' id='sp_pool_count_icon'></span>
|
|
<?php
|
|
} else if ($this->poolCount == 1) {
|
|
echo $this->poolCount;
|
|
?>
|
|
file meets the criteria
|
|
</span>
|
|
<span class='checked-icon sp-checked-icon' id='sp_pool_count_icon'></span>
|
|
<?php
|
|
} else {
|
|
?>
|
|
0 files meet the criteria
|
|
</span>
|
|
<span class='sp-warning-icon' id='sp_pool_count_icon'></span>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
|
|
</dl>
|
|
<?php /*
|
|
for($i=0; $i<$this->numOfSubForm; $i++){
|
|
echo $this->parent_form->getSubform('sp_set_'.$i);
|
|
}*/
|
|
?>
|
|
</fieldset>
|
|
</form>
|