123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class LinkForm
- * Forms related to links.
- *
- * @author Stijn Konings
- * @author Bert Steppé (made more generic)
- *
- * @package chamilo.gradebook
- */
- class LinkForm extends FormValidator
- {
- const TYPE_CREATE = 1;
- const TYPE_MOVE = 2;
- /** @var Category */
- private $category_object;
- private $link_object;
- private $extra;
- /**
- * Builds a form containing form items based on a given parameter.
- *
- * @param int form_type 1=choose link
- * @param obj cat_obj the category object
- * @param string form name
- * @param method
- * @param action
- */
- public function __construct(
- $form_type,
- $category_object,
- $link_object,
- $form_name,
- $method = 'post',
- $action = null,
- $extra = null
- ) {
- parent::__construct($form_name, $method, $action);
- if (isset($category_object)) {
- $this->category_object = $category_object;
- } else {
- if (isset($link_object)) {
- $this->link_object = $link_object;
- }
- }
- if (isset($extra)) {
- $this->extra = $extra;
- }
- if ($form_type == self::TYPE_CREATE) {
- $this->build_create();
- } elseif ($form_type == self::TYPE_MOVE) {
- $this->build_move();
- }
- }
- protected function build_move()
- {
- $renderer = &$this->defaultRenderer();
- $renderer->setCustomElementTemplate('<span>{element}</span> ');
- $this->addElement(
- 'static',
- null,
- null,
- '"'.$this->link_object->get_name().'" '
- );
- $this->addElement('static', null, null, get_lang('Move to').' : ');
- $select = $this->addElement('select', 'move_cat', null, null);
- $line = '';
- foreach ($this->link_object->get_target_categories() as $cat) {
- for ($i = 0; $i < $cat[2]; $i++) {
- $line .= '—';
- }
- $select->addoption($line.' '.$cat[1], $cat[0]);
- $line = '';
- }
- $this->addElement('submit', null, get_lang('Validate'));
- }
- /**
- * Builds the form.
- */
- protected function build_create()
- {
- $this->addElement('header', get_lang('Add online activity'));
- $select = $this->addElement(
- 'select',
- 'select_link',
- get_lang('Choose type of activity to assess'),
- null,
- ['onchange' => 'document.create_link.submit()']
- );
- $linkTypes = LinkFactory::get_all_types();
- $select->addoption('['.get_lang('Choose type of activity to assess').']', 0);
- $courseCode = $this->category_object->get_course_code();
- foreach ($linkTypes as $linkType) {
- // The hot potatoe link will be added "inside" the exercise option.
- if ($linkType == LINK_HOTPOTATOES) {
- continue;
- }
- $link = $this->createLink($linkType, $courseCode);
- // disable this element if the link works with a dropdownlist
- // and if there are no links left
- if (!$link->needs_name_and_description() && count($link->get_all_links()) == '0') {
- $select->addoption($link->get_type_name(), $linkType, 'disabled');
- } else {
- $select->addoption($link->get_type_name(), $linkType);
- }
- if ($link->get_type() == LINK_EXERCISE) {
- // Adding hot potatoes
- $linkHot = $this->createLink(LINK_HOTPOTATOES, $courseCode);
- $linkHot->setHp(true);
- if ($linkHot->get_all_links(true)) {
- $select->addoption(
- ' '.$linkHot->get_type_name(),
- LINK_HOTPOTATOES
- );
- } else {
- $select->addoption(
- ' '.$linkHot->get_type_name(),
- LINK_HOTPOTATOES,
- 'disabled'
- );
- }
- }
- }
- if (isset($this->extra)) {
- $this->setDefaults(['select_link' => $this->extra]);
- }
- }
- /**
- * @param int $link
- * @param string|null $courseCode
- *
- * @return AttendanceLink|DropboxLink|ExerciseLink|ForumThreadLink|LearnpathLink|StudentPublicationLink|SurveyLink|null
- */
- private function createLink($link, $courseCode)
- {
- $link = LinkFactory::create($link);
- if (!empty($courseCode)) {
- $link->set_course_code($courseCode);
- } elseif (!empty($_GET['course_code'])) {
- $link->set_course_code(Database::escape_string($_GET['course_code'], null, false));
- }
- return $link;
- }
- }
|