moodle/mod/wiki/create_form.php
2010-05-02 13:58:13 +00:00

61 lines
2.1 KiB
PHP

<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* This file contains all necessary code to define and process an edit form
*
* @package mod-wiki-2.0
* @copyright 2010 Dongsheng Cai <dongsheng@moodle.com>
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class mod_wiki_create_form extends moodleform {
protected function definition() {
global $CFG;
$mform =& $this->_form;
$formats = $this->_customdata['formats'];
$mform->addElement('header', 'general', get_string('createpage', 'wiki'));
$textoptions = array();
if (!empty($this->_customdata['disable_pagetitle'])) {
$textoptions = array('readonly'=>'readonly');
}
$mform->addElement('text', 'pagetitle', get_string('newpagetitle', 'wiki'), $textoptions);
// TODO: disable creole and nwiki format until moodle core text format lib added
$disabled_formats = array('creole', 'nwiki');
foreach ($formats as $format) {
if (in_array($format, $disabled_formats)) {
$attr = array('disabled'=>'disabled');
} else {
$attr = array('checked'=>'checked');
}
$mform->addElement('radio', 'pageformat', '', get_string('format'.$format, 'wiki'), $format, $attr);
}
//hiddens
$mform->addElement('hidden', 'action');
$mform->setDefault('action', 'create');
$this->add_action_buttons(false, get_string('createpage', 'wiki'));
}
}