You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
273 lines
7.8 KiB
273 lines
7.8 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
use Chamilo\CoreBundle\Framework\Container;
|
|
use Chamilo\CourseBundle\Entity\CQuizCategory;
|
|
use Chamilo\CoreBundle\Component\Utils\ActionIcon;
|
|
|
|
/**
|
|
* Class ExtraFieldValue
|
|
* Declaration for the ExtraFieldValue class, managing the values in extra
|
|
* fields for any data type.
|
|
*/
|
|
class ExerciseCategoryManager extends Model
|
|
{
|
|
public $type = '';
|
|
public $columns = [
|
|
'id',
|
|
'title',
|
|
'c_id',
|
|
'description',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
/**
|
|
* Formats the necessary elements for the given datatype.
|
|
*
|
|
* @assert (-1) === false
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->is_course_model = true;
|
|
$this->table = Database::get_course_table('quiz_category');
|
|
}
|
|
|
|
/**
|
|
* @param int $courseId
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getCategories($courseId)
|
|
{
|
|
return Container::getQuizCategoryRepository()->getCategories($courseId);
|
|
}
|
|
|
|
/**
|
|
* @param int $courseId
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getCategoriesForSelect($courseId)
|
|
{
|
|
$categories = $this->getCategories($courseId);
|
|
$options = [];
|
|
|
|
if (!empty($categories)) {
|
|
/** @var CQuizCategory $category */
|
|
foreach ($categories as $category) {
|
|
$options[$category->getId()] = $category->getTitle();
|
|
}
|
|
}
|
|
|
|
return $options;
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
$repo = Container::getQuizCategoryRepository();
|
|
$category = $repo->find($id);
|
|
$repo->hardDelete($category);
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param $primaryKeys
|
|
* @param $allPrimaryKeys
|
|
* @param \Symfony\Component\HttpFoundation\Session\Session $session
|
|
* @param $parameters
|
|
*/
|
|
public function deleteResource(
|
|
$primaryKeys,
|
|
$allPrimaryKeys,
|
|
Symfony\Component\HttpFoundation\Session\Session $session,
|
|
$parameters
|
|
) {
|
|
$repo = Container::getQuizCategoryRepository();
|
|
$translator = Container::$container->get('translator');
|
|
foreach ($primaryKeys as $id) {
|
|
$category = $repo->find($id);
|
|
$repo->hardDelete($category);
|
|
}
|
|
|
|
Display::addFlash(Display::return_message($translator->trans('Deleted')));
|
|
header('Location:'.api_get_self().'?'.api_get_cidreq());
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* @param array $params
|
|
* @param bool $showQuery
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function update($params, $showQuery = false)
|
|
{
|
|
$id = $params['id'];
|
|
|
|
$repo = Container::getQuizCategoryRepository();
|
|
/** @var CQuizCategory $category */
|
|
$category = $repo->find($id);
|
|
|
|
if ($category) {
|
|
$category
|
|
->setTitle($params['title'])
|
|
->setDescription($params['description'])
|
|
;
|
|
|
|
$repo->update($category);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Save values in the *_field_values table.
|
|
*
|
|
* @param array $params Structured array with the values to save
|
|
* @param bool $showQuery Whether to show the insert query (passed to the parent save() method)
|
|
*/
|
|
public function save($params, $showQuery = false)
|
|
{
|
|
$courseId = api_get_course_int_id();
|
|
$course = api_get_course_entity($courseId);
|
|
|
|
$repo = Container::getQuizCategoryRepository();
|
|
$category = new CQuizCategory();
|
|
$category
|
|
->setTitle($params['title'])
|
|
->setCourse($course)
|
|
->setDescription($params['description'])
|
|
->setParent($course)
|
|
->addCourseLink($course, api_get_session_entity())
|
|
;
|
|
|
|
/*
|
|
// Update position
|
|
$query = $em->getRepository('ChamiloCourseBundle:CQuizCategory')->createQueryBuilder('e');
|
|
$query
|
|
->where('e.cId = :cId')
|
|
->setParameter('cId', $courseId)
|
|
->setMaxResults(1)
|
|
->orderBy('e.position', 'DESC');
|
|
$last = $query->getQuery()->getOneOrNullResult();
|
|
$position = 0;
|
|
if (!empty($last)) {
|
|
$position = $last->getPosition() + 1;
|
|
}
|
|
$category->setPosition($position);
|
|
*/
|
|
$repo->create($category);
|
|
|
|
return $category;
|
|
}
|
|
|
|
/**
|
|
* @param $token
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getJqgridActionLinks($token)
|
|
{
|
|
//With this function we can add actions to the jgrid (edit, delete, etc)
|
|
$editIcon = Display::getMdiIcon(ActionIcon::EDIT, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Edit'));
|
|
$deleteIcon = Display::getMdiIcon(ActionIcon::DELETE, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Delete'));
|
|
$confirmMessage = addslashes(
|
|
api_htmlentities(get_lang('Please confirm your choice'), ENT_QUOTES)
|
|
);
|
|
|
|
$courseParams = api_get_cidreq();
|
|
|
|
$editButton = <<<JAVASCRIPT
|
|
<a href="?action=edit&{$courseParams}&id=' + options.rowId + '" class="btn btn-link btn-xs">\
|
|
$editIcon\
|
|
</a>
|
|
JAVASCRIPT;
|
|
$deleteButton = <<<JAVASCRIPT
|
|
<a \
|
|
onclick="if (!confirm(\'$confirmMessage\')) {return false;}" \
|
|
href="?sec_token=$token&{$courseParams}&id=' + options.rowId + '&action=delete" \
|
|
class="btn btn-link btn-xs">\
|
|
$deleteIcon\
|
|
</a>
|
|
JAVASCRIPT;
|
|
|
|
return "function action_formatter(cellvalue, options, rowObject) {
|
|
return '$editButton $deleteButton';
|
|
}";
|
|
}
|
|
|
|
/**
|
|
* @param string $url
|
|
* @param string $action
|
|
*
|
|
* @return FormValidator
|
|
*/
|
|
public function return_form($url, $action)
|
|
{
|
|
$form = new FormValidator('category', 'post', $url);
|
|
$id = isset($_GET['id']) ? (int) $_GET['id'] : null;
|
|
$form->addElement('hidden', 'id', $id);
|
|
|
|
// Setting the form elements
|
|
$header = get_lang('Add');
|
|
$defaults = [];
|
|
|
|
if ('edit' === $action) {
|
|
$header = get_lang('Edit');
|
|
// Setting the defaults
|
|
$defaults = $this->get($id, false);
|
|
}
|
|
|
|
$form->addElement('header', $header);
|
|
|
|
$form->addText(
|
|
'title',
|
|
get_lang('Name')
|
|
);
|
|
|
|
$form->addHtmlEditor('description', get_lang('Description'));
|
|
|
|
if ('edit' === $action) {
|
|
$form->addButtonUpdate(get_lang('Edit'));
|
|
} else {
|
|
$form->addButtonCreate(get_lang('Add'));
|
|
}
|
|
$form->setDefaults($defaults);
|
|
|
|
// Setting the rules
|
|
$form->addRule('title', get_lang('Required field'), 'required');
|
|
|
|
return $form;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function display()
|
|
{
|
|
$session = api_get_session_entity();
|
|
$course = api_get_course_entity();
|
|
|
|
// Action links
|
|
$content = '<div class="actions">';
|
|
$content .= '<a href="'.api_get_path(WEB_CODE_PATH).'exercise/exercise.php?'.api_get_cidreq().'">';
|
|
$content .= Display::getMdiIcon(ActionIcon::BACK, 'ch-tool-icon', null, ICON_SIZE_MEDIUM, get_lang('Back to').' '.get_lang('Administration'));
|
|
$content .= '</a>';
|
|
$content .= '<a href="'.api_get_self().'?action=add&'.api_get_cidreq().'">';
|
|
$content .= Display::getMdiIcon(ActionIcon::ADD, 'ch-tool-icon', null, ICON_SIZE_MEDIUM, get_lang('Add'));
|
|
$content .= '</a>';
|
|
$content .= '</div>';
|
|
|
|
$content .= Display::grid_html('categories');
|
|
|
|
return $content;
|
|
}
|
|
}
|
|
|