Server IP : 103.11.96.170 / Your IP : 18.219.43.26 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_parallax_apps/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php class block_cocoon_parallax_apps_edit_form extends block_edit_form { protected function specific_definition($mform) { global $CFG; // Fields for editing HTML block title and contents. $mform->addElement('header', 'configheader', get_string('blocksettings', 'block')); // Title $mform->addElement('text', 'config_title', get_string('config_title', 'block_cocoon_parallax_apps')); $mform->setDefault('config_title', 'Download & Enjoy'); $mform->setType('config_title', PARAM_RAW); // Subtitle $mform->addElement('text', 'config_subtitle', get_string('config_subtitle', 'block_cocoon_parallax_apps')); $mform->setDefault('config_subtitle', 'Access your courses anywhere, anytime & prepare with practice tests.'); $mform->setType('config_subtitle', PARAM_RAW); $mform->addElement('header', 'config_app_store_btn', get_string('config_app_store_btn', 'block_cocoon_parallax_apps')); $mform->addElement('text', 'config_app_store_btn_title', get_string('config_app_store_btn_title', 'block_cocoon_parallax_apps')); $mform->setDefault('config_app_store_btn_title', 'App Store'); $mform->setType('config_app_store_btn_title', PARAM_RAW); $mform->addElement('text', 'config_app_store_btn_subtitle', get_string('config_app_store_btn_subtitle', 'block_cocoon_parallax_apps')); $mform->setDefault('config_app_store_btn_subtitle', 'Available on the'); $mform->setType('config_app_store_btn_subtitle', PARAM_RAW); $mform->addElement('text', 'config_app_store_btn_link', get_string('config_app_store_btn_link', 'block_cocoon_parallax_apps')); $mform->setDefault('config_app_store_btn_link', '#'); $mform->setType('config_app_store_btn_link', PARAM_RAW); $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_app_store_btn_target', get_string('config_button_target', 'theme_edumy'), $options); $select->setSelected('_self'); $mform->addElement('header', 'config_play_store_btn', get_string('config_play_store_btn', 'block_cocoon_parallax_apps')); $mform->addElement('text', 'config_play_store_btn_title', get_string('config_play_store_btn_title', 'block_cocoon_parallax_apps')); $mform->setDefault('config_play_store_btn_title', 'Google Play'); $mform->setType('config_play_store_btn_title', PARAM_RAW); $mform->addElement('text', 'config_play_store_btn_subtitle', get_string('config_play_store_btn_subtitle', 'block_cocoon_parallax_apps')); $mform->setDefault('config_play_store_btn_subtitle', 'Get it on'); $mform->setType('config_play_store_btn_subtitle', PARAM_RAW); $mform->addElement('text', 'config_play_store_btn_link', get_string('config_play_store_btn_link', 'block_cocoon_parallax_apps')); $mform->setDefault('config_play_store_btn_link', '#'); $mform->setType('config_play_store_btn_link', PARAM_RAW); $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_play_store_btn_target', get_string('config_button_target', 'theme_edumy'), $options); $select->setSelected('_self'); for($i = 1; $i <= 2; $i++) { $mform->addElement('header', 'config_header' . $i , 'Image ' . $i); $filemanageroptions = array('maxbytes' => $CFG->maxbytes, 'subdirs' => 0, 'maxfiles' => 1, 'accepted_types' => array('.jpg', '.png', '.gif')); $f = $mform->addElement('filemanager', 'config_image' . $i, get_string('config_image', 'block_cocoon_parallax_apps', $i), null, $filemanageroptions); } 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 <= 2; $i++) { $field = 'image' . $i; $config_field = 'config_image' . $i; $draftitemid = file_get_submitted_draft_itemid($config_field); file_prepare_draft_area($draftitemid, $this->block->context->id, 'block_cocoon_parallax_apps', 'images', $i, array('subdirs'=>false)); $defaults->$config_field['itemid'] = $draftitemid; $this->block->config->$field = $draftitemid; } } parent::set_data($defaults); } }