added javascript to page, got rid of separate index/update actions and moved everything to just index since update was not needed as a separate action.
15 lines
623 B
PHTML
15 lines
623 B
PHTML
<form method="<?php echo $this->element->getMethod() ?>" action="<?php echo $this->element->getAction() ?>" enctype="application/x-www-form-urlencoded">
|
|
|
|
<?php echo $this->element->getSubform('preferences_general') ?>
|
|
|
|
<h3 class="collapsible-header"><span class="arrow-icon"></span>SoundCloud settings</h3>
|
|
<div class="collapsible-content" id="soundcloud-settings" style="display: none;">
|
|
<?php echo $this->element->getSubform('preferences_soundcloud') ?>
|
|
</div>
|
|
|
|
<div class="button-bar bottom" id="submit-element">
|
|
<?php echo $this->element->getElement('submit') ?>
|
|
</div>
|
|
|
|
</form>
|