Server IP : 103.11.96.170 / Your IP : 3.142.135.246 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_form/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php class block_cocoon_form_edit_form extends block_edit_form { protected function specific_definition($mform) { global $USER, $DB, $CFG; $ccnFontList = include($CFG->dirroot . '/theme/edumy/ccn/font_handler/ccn_font_select.php'); if (!empty($this->block->config) && is_object($this->block->config)) { $ccnStorage = $this->block->config; } $sql = "SELECT * FROM {cocoon_form_builder_forms}" ; $forms = $DB->get_records_sql($sql); $options = array(); foreach ($forms as $form) { $options[$form->id] = $form->title; } if(count($options) > 0){ $select = $mform->addElement('select', 'config_form', get_string('config_title', 'block_cocoon_form'), $options); $select->setSelected('0'); } else { $mform->addElement('html', '<div class="alert alert-warning">No forms currently exist. <a href="'.$CFG->wwwroot.'/local/cocoon_form_builder/manage.php?page=add">Create a form?</a></div>'); } } }