123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class CourseCategory.
- */
- class CourseCategory
- {
- /**
- * Returns the category fields from the database from an int ID.
- *
- * @param int $categoryId The category ID
- *
- * @return array
- */
- public static function getCategoryById($categoryId)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $categoryId = (int) $categoryId;
- $sql = "SELECT * FROM $table WHERE id = $categoryId";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- return Database::fetch_array($result, 'ASSOC');
- }
- return [];
- }
- /**
- * Get category details from a simple category code.
- *
- * @param string $categoryCode The literal category code
- *
- * @return array
- */
- public static function getCategory($categoryCode)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $categoryCode = Database::escape_string($categoryCode);
- $sql = "SELECT * FROM $table WHERE code ='$categoryCode'";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- $category = Database::fetch_array($result, 'ASSOC');
- if ($category) {
- // Get access url id
- $table = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE_CATEGORY);
- $sql = "SELECT * FROM $table WHERE course_category_id = ".$category['id'];
- $result = Database::query($sql);
- $result = Database::fetch_array($result);
- if ($result) {
- $category['access_url_id'] = $result['access_url_id'];
- }
- return $category;
- }
- }
- return [];
- }
- /**
- * @param string $category Optional. Parent category code
- *
- * @return array
- */
- public static function getCategories($category = '')
- {
- $tbl_category = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $tbl_course = Database::get_main_table(TABLE_MAIN_COURSE);
- $category = Database::escape_string($category);
- $conditions = null;
- $table = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE_CATEGORY);
- $conditions = " INNER JOIN $table a ON (t1.id = a.course_category_id)";
- $whereCondition = " AND a.access_url_id = ".api_get_current_access_url_id();
- $allowBaseCategories = api_get_configuration_value('allow_base_course_category');
- if ($allowBaseCategories) {
- $whereCondition = " AND (a.access_url_id = ".api_get_current_access_url_id()." OR a.access_url_id = 1) ";
- }
- $parentIdCondition = " AND (t1.parent_id IS NULL OR t1.parent_id = '' )";
- if (!empty($category)) {
- $parentIdCondition = " AND t1.parent_id = '$category' ";
- }
- $sql = "SELECT
- t1.name,
- t1.code,
- t1.parent_id,
- t1.tree_pos,
- t1.children_count,
- COUNT(DISTINCT t3.code) AS nbr_courses,
- a.access_url_id
- FROM $tbl_category t1
- $conditions
- LEFT JOIN $tbl_category t2
- ON t1.code = t2.parent_id
- LEFT JOIN $tbl_course t3
- ON t3.category_code=t1.code
- WHERE
- 1 = 1
- $parentIdCondition
- $whereCondition
- GROUP BY t1.name,
- t1.code,
- t1.parent_id,
- t1.tree_pos,
- t1.children_count
- ORDER BY t1.tree_pos";
- $result = Database::query($sql);
- $categories = Database::store_result($result, 'ASSOC');
- return $categories;
- }
- /**
- * Returns a flat list of all course categories in this URL. If the
- * allow_base_course_category option is true, then also show the
- * course categories of the base URL.
- *
- * @return array [id, name, code, parent_id, tree_pos, children_count, number_courses]
- */
- public static function getAllCategories()
- {
- $tbl_category = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $tbl_course = Database::get_main_table(TABLE_MAIN_COURSE);
- $table = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE_CATEGORY);
- $conditions = " INNER JOIN $table a ON (t1.id = a.course_category_id)";
- $whereCondition = " AND a.access_url_id = ".api_get_current_access_url_id();
- $allowBaseCategories = api_get_configuration_value('allow_base_course_category');
- if ($allowBaseCategories) {
- $whereCondition = " AND (a.access_url_id = ".api_get_current_access_url_id()." OR a.access_url_id = 1) ";
- }
- $sql = "SELECT
- t1.id,
- t1.name,
- t1.code,
- t1.parent_id,
- t1.tree_pos,
- t1.children_count,
- COUNT(DISTINCT t3.code) AS number_courses
- FROM $tbl_category t1
- $conditions
- LEFT JOIN $tbl_course t3
- ON t3.category_code=t1.code
- WHERE 1=1
- $whereCondition
- GROUP BY
- t1.name,
- t1.code,
- t1.parent_id,
- t1.tree_pos,
- t1.children_count
- ORDER BY t1.parent_id, t1.tree_pos";
- $result = Database::query($sql);
- $categories = Database::store_result($result, 'ASSOC');
- return $categories;
- }
- /**
- * @param string $code
- * @param string $name
- * @param string $canHaveCourses
- * @param int $parent_id
- *
- * @return bool
- */
- public static function addNode($code, $name, $canHaveCourses, $parent_id)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $code = trim($code);
- $name = trim($name);
- $parent_id = trim($parent_id);
- $code = CourseManager::generate_course_code($code);
- $sql = "SELECT 1 FROM $table
- WHERE code = '".Database::escape_string($code)."'";
- $result = Database::query($sql);
- if (Database::num_rows($result)) {
- return false;
- }
- $result = Database::query("SELECT MAX(tree_pos) AS maxTreePos FROM $table");
- $row = Database::fetch_array($result);
- $tree_pos = $row['maxTreePos'] + 1;
- $params = [
- 'name' => $name,
- 'code' => $code,
- 'parent_id' => empty($parent_id) ? null : $parent_id,
- 'tree_pos' => $tree_pos,
- 'children_count' => 0,
- 'auth_course_child' => $canHaveCourses,
- 'auth_cat_child' => 'TRUE',
- ];
- $categoryId = Database::insert($table, $params);
- if ($categoryId) {
- self::updateParentCategoryChildrenCount($parent_id, 1);
- UrlManager::addCourseCategoryListToUrl(
- [$categoryId],
- [api_get_current_access_url_id()]
- );
- return $categoryId;
- }
- return false;
- }
- /**
- * Recursive function that updates the count of children in the parent.
- *
- * @param string $categoryId Category ID
- * @param int $delta The number to add or delete (1 to add one, -1 to remove one)
- */
- public static function updateParentCategoryChildrenCount($categoryId, $delta = 1)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $categoryId = Database::escape_string($categoryId);
- $delta = (int) $delta;
- // First get to the highest level possible in the tree
- $result = Database::query("SELECT parent_id FROM $table WHERE code = '$categoryId'");
- $row = Database::fetch_array($result);
- if ($row !== false and $row['parent_id'] != 0) {
- // if a parent was found, enter there to see if he's got one more parent
- self::updateParentCategoryChildrenCount($row['parent_id'], $delta);
- }
- // Now we're at the top, get back down to update each child
- $sql = "UPDATE $table SET children_count = (children_count - ".abs($delta).") WHERE code = '$categoryId'";
- if ($delta >= 0) {
- $sql = "UPDATE $table SET children_count = (children_count + $delta) WHERE code = '$categoryId'";
- }
- Database::query($sql);
- }
- /**
- * @param string $node
- *
- * @return bool
- */
- public static function deleteNode($node)
- {
- $category = self::getCategory($node);
- if (empty($category)) {
- return false;
- }
- $tbl_course = Database::get_main_table(TABLE_MAIN_COURSE);
- $tbl_category = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $node = Database::escape_string($node);
- $result = Database::query("SELECT parent_id, tree_pos FROM $tbl_category WHERE code='$node'");
- if ($row = Database::fetch_array($result)) {
- if (!empty($row['parent_id'])) {
- Database::query(
- "UPDATE $tbl_course SET category_code = '".$row['parent_id']."' WHERE category_code='$node'"
- );
- Database::query("UPDATE $tbl_category SET parent_id='".$row['parent_id']."' WHERE parent_id='$node'");
- } else {
- Database::query("UPDATE $tbl_course SET category_code='' WHERE category_code='$node'");
- Database::query("UPDATE $tbl_category SET parent_id=NULL WHERE parent_id='$node'");
- }
- $table = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE_CATEGORY);
- $sql = "DELETE FROM $table WHERE course_category_id = ".$category['id'];
- Database::query($sql);
- Database::query("UPDATE $tbl_category SET tree_pos=tree_pos-1 WHERE tree_pos > '".$row['tree_pos']."'");
- Database::query("DELETE FROM $tbl_category WHERE code='$node'");
- if (!empty($row['parent_id'])) {
- self::updateParentCategoryChildrenCount($row['parent_id'], -1);
- }
- return true;
- }
- }
- /**
- * @param string $code
- * @param string $name
- * @param string $canHaveCourses
- * @param string $old_code
- *
- * @return bool
- */
- public static function editNode($code, $name, $canHaveCourses, $old_code)
- {
- $tbl_course = Database::get_main_table(TABLE_MAIN_COURSE);
- $tbl_category = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $code = trim(Database::escape_string($code));
- $name = trim(Database::escape_string($name));
- $old_code = Database::escape_string($old_code);
- $canHaveCourses = Database::escape_string($canHaveCourses);
- $code = CourseManager::generate_course_code($code);
- // Updating category
- $sql = "UPDATE $tbl_category SET
- name='$name',
- code='$code',
- auth_course_child = '$canHaveCourses'
- WHERE code = '$old_code'";
- Database::query($sql);
- // Updating children
- $sql = "UPDATE $tbl_category SET parent_id = '$code'
- WHERE parent_id = '$old_code'";
- Database::query($sql);
- // Updating course category
- $sql = "UPDATE $tbl_course SET category_code = '$code'
- WHERE category_code = '$old_code' ";
- Database::query($sql);
- return true;
- }
- /**
- * Move a node up on display.
- *
- * @param string $code
- * @param int $tree_pos
- * @param string $parent_id
- *
- * @return bool
- */
- public static function moveNodeUp($code, $tree_pos, $parent_id)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $code = Database::escape_string($code);
- $tree_pos = (int) $tree_pos;
- $parent_id = Database::escape_string($parent_id);
- $parentIdCondition = " AND (parent_id IS NULL OR parent_id = '' )";
- if (!empty($parent_id)) {
- $parentIdCondition = " AND parent_id = '$parent_id' ";
- }
- $sql = "SELECT code,tree_pos
- FROM $table
- WHERE
- tree_pos < $tree_pos
- $parentIdCondition
- ORDER BY tree_pos DESC
- LIMIT 0,1";
- $result = Database::query($sql);
- if (!$row = Database::fetch_array($result)) {
- $sql = "SELECT code, tree_pos
- FROM $table
- WHERE
- tree_pos > $tree_pos
- $parentIdCondition
- ORDER BY tree_pos DESC
- LIMIT 0,1";
- $result2 = Database::query($sql);
- if (!$row = Database::fetch_array($result2)) {
- return false;
- }
- }
- $sql = "UPDATE $table
- SET tree_pos ='".$row['tree_pos']."'
- WHERE code='$code'";
- Database::query($sql);
- $sql = "UPDATE $table
- SET tree_pos = '$tree_pos'
- WHERE code= '".$row['code']."'";
- Database::query($sql);
- return true;
- }
- /**
- * Counts the number of children categories a category has.
- *
- * @param int $categoryId The ID of the category of which we want to count the children
- *
- * @return mixed The number of subcategories this category has
- */
- public static function courseCategoryChildrenCount($categoryId)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $categoryId = (int) $categoryId;
- $count = 0;
- if (empty($categoryId)) {
- return 0;
- }
- $sql = "SELECT id, code FROM $table
- WHERE parent_id = $categoryId";
- $result = Database::query($sql);
- while ($row = Database::fetch_array($result)) {
- $count += self::courseCategoryChildrenCount($row['id']);
- }
- $sql = "UPDATE $table SET
- children_count = $count
- WHERE id = $categoryId";
- Database::query($sql);
- return $count + 1;
- }
- /**
- * @param string $categoryCode
- *
- * @return array
- */
- public static function getChildren($categoryCode)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $categoryCode = Database::escape_string($categoryCode);
- $sql = "SELECT code, id FROM $table
- WHERE parent_id = '$categoryCode'";
- $result = Database::query($sql);
- $children = [];
- while ($row = Database::fetch_array($result, 'ASSOC')) {
- $children[] = $row;
- $subChildren = self::getChildren($row['code']);
- $children = array_merge($children, $subChildren);
- }
- return $children;
- }
- /**
- * @param string $categoryCode
- *
- * @return array
- */
- public static function getParents($categoryCode)
- {
- if (empty($categoryCode)) {
- return [];
- }
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $categoryCode = Database::escape_string($categoryCode);
- $sql = "SELECT code, parent_id
- FROM $table
- WHERE code = '$categoryCode'";
- $result = Database::query($sql);
- $children = [];
- while ($row = Database::fetch_array($result, 'ASSOC')) {
- $parent = self::getCategory($row['parent_id']);
- $children[] = $row;
- $subChildren = self::getParents($parent ? $parent['code'] : null);
- $children = array_merge($children, $subChildren);
- }
- return $children;
- }
- /**
- * @param string $categoryCode
- *
- * @return string|null
- */
- public static function getParentsToString($categoryCode)
- {
- $parents = self::getParents($categoryCode);
- if (!empty($parents)) {
- $parents = array_reverse($parents);
- $categories = [];
- foreach ($parents as $category) {
- $categories[] = $category['code'];
- }
- $categoriesInString = implode(' > ', $categories).' > ';
- return $categoriesInString;
- }
- return null;
- }
- /**
- * @param string $categorySource
- *
- * @return string
- */
- public static function listCategories($categorySource)
- {
- $categories = self::getCategories($categorySource);
- $categorySource = Security::remove_XSS($categorySource);
- if (count($categories) > 0) {
- $table = new HTML_Table(['class' => 'data_table']);
- $column = 0;
- $row = 0;
- $headers = [
- get_lang('Category'),
- get_lang('Sub-categories'),
- get_lang('Courses'),
- get_lang('Detail'),
- ];
- foreach ($headers as $header) {
- $table->setHeaderContents($row, $column, $header);
- $column++;
- }
- $row++;
- $mainUrl = api_get_path(WEB_CODE_PATH).'admin/course_category.php?category='.$categorySource;
- $editIcon = Display::return_icon(
- 'edit.png',
- get_lang('Edit this category'),
- null,
- ICON_SIZE_SMALL
- );
- $deleteIcon = Display::return_icon(
- 'delete.png',
- get_lang('Delete this category'),
- null,
- ICON_SIZE_SMALL
- );
- $moveIcon = Display::return_icon(
- 'up.png',
- get_lang('Up in same level'),
- null,
- ICON_SIZE_SMALL
- );
- $urlId = api_get_current_access_url_id();
- foreach ($categories as $category) {
- $editUrl = $mainUrl.'&id='.$category['code'].'&action=edit';
- $moveUrl = $mainUrl.'&id='.$category['code'].'&action=moveUp&tree_pos='.$category['tree_pos'];
- $deleteUrl = $mainUrl.'&id='.$category['code'].'&action=delete';
- $actions = [];
- if ($urlId == $category['access_url_id']) {
- $actions[] = Display::url($editIcon, $editUrl);
- $actions[] = Display::url($moveIcon, $moveUrl);
- $actions[] = Display::url($deleteIcon, $deleteUrl);
- }
- $url = api_get_path(WEB_CODE_PATH).'admin/course_category.php?category='.$category['code'];
- $title = Display::url(
- Display::return_icon(
- 'folder_document.gif',
- get_lang('Open this category'),
- null,
- ICON_SIZE_SMALL
- ).' '.$category['name'].' ('.$category['code'].')',
- $url
- );
- $content = [
- $title,
- $category['children_count'],
- $category['nbr_courses'],
- implode('', $actions),
- ];
- $column = 0;
- foreach ($content as $value) {
- $table->setCellContents($row, $column, $value);
- $column++;
- }
- $row++;
- }
- return $table->toHtml();
- } else {
- return Display::return_message(get_lang('There are no categories here'), 'warning');
- }
- }
- /**
- * @return array
- */
- public static function getCategoriesToDisplayInHomePage()
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $sql = "SELECT name FROM $table
- WHERE parent_id IS NULL
- ORDER BY tree_pos";
- return Database::store_result(Database::query($sql));
- }
- /**
- * @param string $categoryCode
- *
- * @return array
- */
- public static function getCategoriesCanBeAddedInCourse($categoryCode)
- {
- $table = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE_CATEGORY);
- $conditions = " INNER JOIN $table a ON (c.id = a.course_category_id)";
- $whereCondition = ' AND a.access_url_id = '.api_get_current_access_url_id();
- $tbl_category = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $sql = "SELECT code, name
- FROM $tbl_category c
- $conditions
- WHERE (auth_course_child = 'TRUE' OR code = '".Database::escape_string($categoryCode)."')
- $whereCondition
- ORDER BY tree_pos";
- $res = Database::query($sql);
- $categories[''] = '-';
- while ($cat = Database::fetch_array($res)) {
- $categories[$cat['code']] = '('.$cat['code'].') '.$cat['name'];
- ksort($categories);
- }
- return $categories;
- }
- /**
- * @param string $category_code
- * @param string $searchTerm
- *
- * @return int
- */
- public static function countCoursesInCategory($category_code = '', $searchTerm = '')
- {
- $tbl_course = Database::get_main_table(TABLE_MAIN_COURSE);
- $categoryCode = Database::escape_string($category_code);
- $searchTerm = Database::escape_string($searchTerm);
- $avoidCoursesCondition = CoursesAndSessionsCatalog::getAvoidCourseCondition();
- $visibilityCondition = CourseManager::getCourseVisibilitySQLCondition('course', true);
- $categoryFilter = '';
- if ($categoryCode === 'ALL') {
- // Nothing to do
- } elseif ($categoryCode === 'NONE') {
- $categoryFilter = ' AND category_code = "" ';
- } else {
- $categoryFilter = ' AND category_code = "'.$categoryCode.'" ';
- }
- $searchFilter = '';
- if (!empty($searchTerm)) {
- $searchFilter = ' AND (
- code LIKE "%'.$searchTerm.'%" OR
- title LIKE "%'.$searchTerm.'%" OR
- tutor_name LIKE "%'.$searchTerm.'%"
- ) ';
- }
- $urlCondition = ' access_url_id = '.api_get_current_access_url_id().' AND';
- $tbl_url_rel_course = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE);
- $sql = "SELECT count(*) as count
- FROM $tbl_course as course
- INNER JOIN $tbl_url_rel_course as url_rel_course
- ON (url_rel_course.c_id = course.id)
- WHERE
- $urlCondition
- course.visibility != '0' AND
- course.visibility != '4'
- $categoryFilter
- $searchFilter
- $avoidCoursesCondition
- $visibilityCondition
- ";
- $result = Database::query($sql);
- $row = Database::fetch_array($result);
- return (int) $row['count'];
- }
- /**
- * @param array $list
- *
- * @return array
- */
- public static function getCourseCategoryNotInList($list)
- {
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- if (empty($list)) {
- $sql = "SELECT * FROM $table
- WHERE (parent_id IS NULL) ";
- $result = Database::query($sql);
- return Database::store_result($result, 'ASSOC');
- }
- $list = array_map('intval', $list);
- $listToString = implode("','", $list);
- $sql = "SELECT * FROM $table
- WHERE id NOT IN ('$listToString') AND (parent_id IS NULL) ";
- $result = Database::query($sql);
- return Database::store_result($result, 'ASSOC');
- }
- /**
- * @param string $keyword
- *
- * @return array|null
- */
- public static function searchCategoryByKeyword($keyword)
- {
- if (empty($keyword)) {
- return null;
- }
- $tableCategory = Database::get_main_table(TABLE_MAIN_CATEGORY);
- $table = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE_CATEGORY);
- $conditions = " INNER JOIN $table a ON (c.id = a.course_category_id)";
- $whereCondition = " AND a.access_url_id = ".api_get_current_access_url_id();
- $keyword = Database::escape_string($keyword);
- $sql = "SELECT c.*, c.name as text
- FROM $tableCategory c $conditions
- WHERE
- (
- c.code LIKE '%$keyword%' OR name LIKE '%$keyword%'
- ) AND auth_course_child = 'TRUE'
- $whereCondition ";
- $result = Database::query($sql);
- return Database::store_result($result, 'ASSOC');
- }
- /**
- * Get Pagination HTML div.
- *
- * @param $pageCurrent
- * @param $pageLength
- * @param $pageTotal
- *
- * @return string
- */
- public static function getCatalogPagination($pageCurrent, $pageLength, $pageTotal)
- {
- // Start empty html
- $pageDiv = '';
- $html = '';
- $pageBottom = max(1, $pageCurrent - 3);
- $pageTop = min($pageTotal, $pageCurrent + 3);
- if ($pageBottom > 1) {
- $pageDiv .= self::getPageNumberItem(1, $pageLength);
- if ($pageBottom > 2) {
- $pageDiv .= self::getPageNumberItem(
- $pageBottom - 1,
- $pageLength,
- null,
- '...'
- );
- }
- }
- // For each page add its page button to html
- for ($i = $pageBottom; $i <= $pageTop; $i++) {
- if ($i === $pageCurrent) {
- $pageItemAttributes = ['class' => 'page-item active'];
- } else {
- $pageItemAttributes = ['class' => 'page-item'];
- }
- $pageDiv .= self::getPageNumberItem(
- $i,
- $pageLength,
- $pageItemAttributes
- );
- }
- // Check if current page is the last page
- if ($pageTop < $pageTotal) {
- if ($pageTop < ($pageTotal - 1)) {
- $pageDiv .= self::getPageNumberItem(
- $pageTop + 1,
- $pageLength,
- null,
- '...'
- );
- }
- $pageDiv .= self::getPageNumberItem($pageTotal, $pageLength);
- }
- // Complete pagination html
- $pageDiv = Display::tag('ul', $pageDiv, ['class' => 'pagination']);
- $html .= '<nav>'.$pageDiv.'</nav>';
- return $html;
- }
- /**
- * Return URL to course catalog.
- *
- * @param int $pageCurrent
- * @param int $pageLength
- * @param string $categoryCode
- * @param int $hiddenLinks
- * @param string $action
- *
- * @return string
- */
- public static function getCourseCategoryUrl(
- $pageCurrent,
- $pageLength,
- $categoryCode = null,
- $hiddenLinks = null,
- $action = null
- ) {
- $requestAction = isset($_REQUEST['action']) ? Security::remove_XSS($_REQUEST['action']) : null;
- $action = isset($action) ? Security::remove_XSS($action) : $requestAction;
- $searchTerm = isset($_REQUEST['search_term']) ? Security::remove_XSS($_REQUEST['search_term']) : null;
- if ($action === 'subscribe_user_with_password') {
- $action = 'subscribe';
- }
- $categoryCodeRequest = isset($_REQUEST['category_code']) ? Security::remove_XSS($_REQUEST['category_code']) : null;
- $categoryCode = isset($categoryCode) ? Security::remove_XSS($categoryCode) : $categoryCodeRequest;
- $hiddenLinksRequest = isset($_REQUEST['hidden_links']) ? Security::remove_XSS($_REQUEST['hidden_links']) : null;
- $hiddenLinks = isset($hiddenLinks) ? Security::remove_XSS($hiddenLinksRequest) : $categoryCodeRequest;
- // Start URL with params
- $pageUrl = api_get_self().
- '?action='.$action.
- '&category_code='.$categoryCode.
- '&hidden_links='.$hiddenLinks.
- '&pageCurrent='.$pageCurrent.
- '&pageLength='.$pageLength;
- switch ($action) {
- case 'subscribe':
- // for search
- $pageUrl .=
- '&search_term='.$searchTerm.
- '&search_course=1'.
- '&sec_token='.Security::getTokenFromSession();
- break;
- case 'display_courses':
- default:
- break;
- }
- return $pageUrl;
- }
- /**
- * Get li HTML of page number.
- *
- * @param $pageNumber
- * @param $pageLength
- * @param array $liAttributes
- * @param string $content
- *
- * @return string
- */
- public static function getPageNumberItem(
- $pageNumber,
- $pageLength,
- $liAttributes = [],
- $content = ''
- ) {
- // Get page URL
- $url = self::getCourseCategoryUrl(
- $pageNumber,
- $pageLength
- );
- // If is current page ('active' class) clear URL
- if (isset($liAttributes) && is_array($liAttributes) && isset($liAttributes['class'])) {
- if (strpos('active', $liAttributes['class']) !== false) {
- $url = '';
- }
- }
- $content = !empty($content) ? $content : $pageNumber;
- return Display::tag(
- 'li',
- Display::url(
- $content,
- $url,
- ['class' => 'page-link']
- ),
- $liAttributes
- );
- }
- /**
- * Return the name tool by action.
- *
- * @param string $action
- *
- * @return string
- */
- public static function getCourseCatalogNameTools($action)
- {
- $nameTools = get_lang('My courses');
- if (empty($action)) {
- return $nameTools; //should never happen
- }
- switch ($action) {
- case 'subscribe':
- case 'subscribe_user_with_password':
- case 'display_random_courses':
- case 'display_courses':
- $nameTools = get_lang('Courses catalog');
- break;
- case 'display_sessions':
- $nameTools = get_lang('Course sessions');
- break;
- default:
- // Nothing to do
- break;
- }
- return $nameTools;
- }
- /**
- * Save image for a course category.
- *
- * @param int $categoryId Course category ID
- * @param array $fileData File data from $_FILES
- */
- public static function saveImage($categoryId, $fileData)
- {
- $categoryInfo = self::getCategoryById($categoryId);
- if (empty($categoryInfo)) {
- return;
- }
- if (!empty($fileData['error'])) {
- return;
- }
- $extension = getextension($fileData['name']);
- $dirName = 'course_category/';
- $fileDir = api_get_path(SYS_UPLOAD_PATH).$dirName;
- $fileName = "cc_$categoryId.{$extension[0]}";
- if (!file_exists($fileDir)) {
- mkdir($fileDir, api_get_permissions_for_new_directories(), true);
- }
- $image = new Image($fileData['tmp_name']);
- $image->send_image($fileDir.$fileName);
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- Database::update(
- $table,
- ['image' => $dirName.$fileName],
- ['id = ?' => $categoryId]
- );
- }
- /**
- * @param $categoryId
- * @param string $description
- *
- * @return string
- */
- public static function saveDescription($categoryId, $description)
- {
- $categoryInfo = self::getCategoryById($categoryId);
- if (empty($categoryInfo)) {
- return false;
- }
- $table = Database::get_main_table(TABLE_MAIN_CATEGORY);
- Database::update(
- $table,
- ['description' => $description],
- ['id = ?' => $categoryId]
- );
- return true;
- }
- }
|