File: D:/HostingSpaces/SBogers10/komma-mediadesign.nl/wwwroot/beheer/app/views/v_mo_order_items.php
<?php
include DOCUMENT_ROOT.'app/views/includes/v_public_header.php';
include DOCUMENT_ROOT.'app/views/includes/v_public_aside.php';
$btnSave = new Button(array('type'=>'submit','name'=>'sbm_order_items','label'=>'Wijzig'));
$btnSave->addClasses(array('blue-grad'));
$btnCancel = new Button(array('type'=>'link','href'=> SITE_ROOT.$this->getData('page_linkname',FALSE).'/','label'=>'Annuleren'));
$btnCancel->addClasses(array('black-grad', 'no-margin-right'));
?>
<div id="wrapper">
<!-- Header -->
<h1><?php $this->getData('page_label'); ?></h1>
<hr />
<!-- Form -->
<form id="dd-form" action="" method="post">
<h2>Wijzig volgorde</h2>
<p>
Wijzig de volgorde door de balken te verslepen.
</p>
<!-- List -->
<ul id="sortable-list" class="mp-list">
<?php $this->getData('sortable_list'); ?>
</ul>
<input type="hidden" name="sort_order" id="sort_order" value="<?php echo implode(',',$this->getData('list_ids',FALSE)); ?>" />
<?php
$btnSave->display();
$btnCancel->display();
?>
<div class="clear"></div>
</form>
</div>
<?php
include DOCUMENT_ROOT.'app/views/includes/v_public_footer.php';
?>