123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ tl6Fq6ikhVRRBj8x5MQI+9dtUj4sc2C6/Z/a0oTGE5U=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2015 Online Ventures Software & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.5
- */
- namespace Ppb\Form\Element\MultiUpload;
- use Ppb\Form\Element\MultiUpload as MultiUploadElement;
- class Sortable extends MultiUploadElement
- {
- /**
- *
- * class constructor
- *
- * @param string $name
- */
- public function __construct($name)
- {
- parent::__construct($name);
- $this->_thumbDivId = $name . 'Sortable';
- $this->setBodyCode('<script type="text/javascript">
- $("#' . $this->_thumbDivId . '").sortable();
- </script>');
- }
- }
|