Server IP : 103.11.96.170 / Your IP : 18.223.122.53 Web Server : Microsoft-IIS/10.0 System : Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64 User : elibrary.unsap.ac.id ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : D:/localhost/lms/blocks/cocoon_slider_1/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php class block_cocoon_slider_1_edit_form extends block_edit_form { protected function specific_definition($mform) { global $CFG; if (!empty($this->block->config) && is_object($this->block->config)) { $data = $this->block->config; } else { $data = new stdClass(); $data->slidesnumber = 3; } // Fields for editing HTML block title and contents. $mform->addElement('header', 'configheader', get_string('blocksettings', 'block')); $options = array( '0' => '2 lines (default)', '1' => '1 line', '2' => 'Hidden', ); $select = $mform->addElement('select', 'config_arrow_style', get_string('config_arrow_style', 'theme_edumy'), $options, array('class'=>'ccnCommLcRef_change')); $select->setSelected('0'); $mform->addElement('text', 'config_prev_1', get_string('config_prev_1', 'theme_edumy')); $mform->hideIf('config_prev_1', 'config_arrow_style', 'neq', 0); $mform->setDefault('config_prev_1', 'PR'); $mform->setType('config_prev_1', PARAM_TEXT); $mform->addElement('text', 'config_prev_2', get_string('config_prev_2', 'theme_edumy')); $mform->hideIf('config_prev_2', 'config_arrow_style', 'neq', 0); $mform->setDefault('config_prev_2', 'EV'); $mform->setType('config_prev_2', PARAM_TEXT); $mform->addElement('text', 'config_prev', get_string('config_prev', 'theme_edumy')); $mform->hideIf('config_prev', 'config_arrow_style', 'neq', 1); $mform->setDefault('config_prev', 'PREV'); $mform->setType('config_prev', PARAM_TEXT); $mform->addElement('text', 'config_next_1', get_string('config_next_1', 'theme_edumy')); $mform->hideIf('config_next_1', 'config_arrow_style', 'neq', 0); $mform->setDefault('config_next_1', 'NE'); $mform->setType('config_next_1', PARAM_TEXT); $mform->addElement('text', 'config_next_2', get_string('config_next_2', 'theme_edumy')); $mform->hideIf('config_next_2', 'config_arrow_style', 'neq', 0); $mform->setDefault('config_next_2', 'XT'); $mform->setType('config_next_2', PARAM_TEXT); $mform->addElement('text', 'config_next', get_string('config_next', 'theme_edumy')); $mform->hideIf('config_next', 'config_arrow_style', 'neq', 1); $mform->setDefault('config_next', 'NEXT'); $mform->setType('config_next', PARAM_TEXT); $slidesrange = array( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', 6 => '6', 7 => '7', 8 => '8', 9 => '9', 10 => '10', 11 => '11', 12 => '12', ); $slidesmax = 12; $mform->addElement('select', 'config_slidesnumber', get_string('config_items', 'theme_edumy'), $slidesrange); $mform->setDefault('config_slidesnumber', 3); for($i = 1; $i <= $slidesmax; $i++) { $mform->addElement('header', 'config_ccn_item' . $i , 'Slide ' . $i); $mform->addElement('text', 'config_slide_title' . $i, get_string('config_title', 'theme_edumy', $i)); $mform->setDefault('config_slide_title' .$i , 'Self Education Resources and Infos'); $mform->setType('config_slide_title' . $i, PARAM_TEXT); $mform->addElement('text', 'config_slide_subtitle' . $i, get_string('config_subtitle', 'theme_edumy', $i)); $mform->setDefault('config_slide_subtitle' .$i , 'Technology is brining a massive wave of evolution on learning things on different ways.'); $mform->setType('config_slide_subtitle' . $i, PARAM_TEXT); $mform->addElement('text', 'config_slide_btn_text' . $i, get_string('config_button_text', 'theme_edumy', $i)); $mform->setDefault('config_slide_btn_text' .$i , 'Ready to Get Started?'); $mform->setType('config_slide_btn_text' . $i, PARAM_TEXT); $mform->addElement('text', 'config_slide_btn_url' . $i, get_string('config_button_link', 'theme_edumy', $i)); $mform->setDefault('config_slide_btn_url' .$i , '#'); $mform->setType('config_slide_btn_url' . $i, PARAM_TEXT); $options = array( '_self' => 'Self (open in same window)', '_blank' => 'Blank (open in new window)', '_parent' => 'Parent (open in parent frame)', '_top' => 'Top (open in full body of the window)', ); $select = $mform->addElement('select', 'config_slide_btn_target' . $i, get_string('config_button_target', 'theme_edumy'), $options); $select->setSelected('_self'); $filemanageroptions = array('maxbytes' => $CFG->maxbytes, 'subdirs' => 0, 'maxfiles' => 1, 'accepted_types' => array('.jpg', '.png', '.gif')); $f = $mform->addElement('filemanager', 'config_file_slide' . $i, get_string('config_image', 'theme_edumy', $i), null, $filemanageroptions); } include($CFG->dirroot . '/theme/edumy/ccn/block_handler/edit/edit_ccn_carousel.php'); include($CFG->dirroot . '/theme/edumy/ccn/block_handler/edit.php'); } function set_data($defaults) { if (!empty($this->block->config) && is_object($this->block->config)) { for($i = 1; $i <= $this->block->config->slidesnumber; $i++) { $field = 'file_slide' . $i; $conffield = 'config_file_slide' . $i; $draftitemid = file_get_submitted_draft_itemid($conffield); file_prepare_draft_area($draftitemid, $this->block->context->id, 'block_cocoon_slider_1', 'slides', $i, array('subdirs'=>false)); $defaults->$conffield['itemid'] = $draftitemid; $this->block->config->$field = $draftitemid; } } parent::set_data($defaults); } }