Add constant to handle page length fix card height see BT#12754

pull/2487/head
jmontoyaa 8 years ago
parent 7a15df65af
commit 0a790676cd
  1. 10
      app/Resources/public/css/base.css
  2. 2
      main/auth/courses_categories.php
  3. 2
      main/inc/lib/CoursesAndSessionsCatalog.class.php
  4. 2
      main/inc/lib/course_category.lib.php
  5. 6
      main/template/default/auth/session_catalog.tpl

@ -4803,12 +4803,18 @@ div#chat-remote-video video {
.grid-courses .items.my-courses .block-title{
margin: 10px;
}
.grid-courses .items.items-courses{
min-height: 425px;
.grid-courses .items.items-courses {
padding-bottom: 10px;
width: 310px;
box-shadow: 2px 4px 15px 0 rgba(46,61,73,.1);
transition: box-shadow .3s ease , border .3s ease;
}
.grid-courses .items.items-sessions {
min-height: 355px;
}
.grid-courses .items.items-courses:hover,
.grid-courses .items.my-courses:hover,
.grid-courses .items.items-hotcourse:hover{

@ -16,7 +16,7 @@ if (isset($_REQUEST['action']) && Security::remove_XSS($_REQUEST['action']) !==
$showCourses = CoursesAndSessionsCatalog::showCourses();
$showSessions = CoursesAndSessionsCatalog::showSessions();
$pageCurrent = isset($pageCurrent) ? $pageCurrent : isset($_GET['pageCurrent']) ? intval($_GET['pageCurrent']) : 1;
$pageLength = isset($pageLength) ? $pageLength : isset($_GET['pageLength']) ? intval($_GET['pageLength']) : 12;
$pageLength = isset($pageLength) ? $pageLength : isset($_GET['pageLength']) ? intval($_GET['pageLength']) : CoursesAndSessionsCatalog::PAGE_LENGTH;
$pageTotal = intval(ceil(intval($countCoursesInCategory) / $pageLength));
$cataloguePagination = $pageTotal > 1 ? CourseCategory::getCatalogPagination($pageCurrent, $pageLength, $pageTotal) : '';
$search_term = isset($search_term) ? $search_term : null;

@ -7,6 +7,8 @@
*/
class CoursesAndSessionsCatalog
{
const PAGE_LENGTH = 12;
/**
* Check the configuration for the courses and sessions catalog
* @global array $_configuration Configuration

@ -938,7 +938,7 @@ class CourseCategory
public static function getLimitArray()
{
$pageCurrent = isset($_REQUEST['pageCurrent']) ? intval($_GET['pageCurrent']) : 1;
$pageLength = isset($_REQUEST['pageLength']) ? intval($_GET['pageLength']) : 12;
$pageLength = isset($_REQUEST['pageLength']) ? intval($_GET['pageLength']) : CoursesAndSessionsCatalog::PAGE_LENGTH;
return array(
'start' => ($pageCurrent - 1) * $pageLength,

@ -11,7 +11,7 @@
<div class="row">
<div class="col-md-12">
<!-- header catalog session -->
<h2 class="title-session">{{ 'Sessions'|get_lang }}</h2>
<h2 class="title-session">{{ 'Sessions'|get_lang }}</h2>
<div class="search-session">
<div class="row">
<div class="col-md-6">
@ -61,7 +61,7 @@
<div class="row">
{% for item in sessions %}
<div class="col-md-4 col-sm-6 col-xs-12">
<div id="session-{{ item.id }}" class="items items-courses">
<div id="session-{{ item.id }}" class="items items-courses items-sessions">
<div class="image">
<a href="{{ _p.web ~ 'session/' ~ item.id ~ '/about/' }}" title="{{ item.name }}">
<img class="img-responsive" src="{{ item.image ? _p.web_upload ~ item.image : 'session_default.png'|icon() }}">
@ -145,7 +145,7 @@
</div>
{% endif %}
</div>
</div>
</div>
{% if _u.logged %}

Loading…
Cancel
Save