Supprimer le rollover sur la pagination

Réduire
X
 
  • Filtrer
  • Heure
  • Afficher
Tout effacer
nouveaux messages

  • [RÉGLÉ] Supprimer le rollover sur la pagination

    Bonjour,

    Il y a un text qui s'affiche lorsque je passe la souris sur un lien de la pagination par défaut de joomla.
    Sur la console de chrome, il m'ajoute l'attribut data-original-title au lien et le texte en rollover vient de cet attribut.

    Ca me faisait exactement la même chose sur un formulaire de contact que j'avais pu enlever en supprimant l'attribut description de contact.xml.
    Mais là, je ne vois pas du tout où chercher.

    Est-ce déjà arrivé à quelqu'un ? Où auriez-vous une piste à me donner ?
    Dernière édition par fab06 à 29/04/2014, 12h55

  • #2
    Re : Supprimer le rollover sur la pagination

    J'ai trouvé il faut surcharger pagination.php de joomla dans mon template.

    Code PHP:
    <?php
    /**
     * @version        $Id: pagination.php 14401 2010-01-26 14:10:00Z louis $
     * @package        Joomla
     * @copyright    Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
     * @license        GNU/GPL, see LICENSE.php
     * Joomla! is free software. This version may have been modified pursuant
     * to the GNU General Public License, and as distributed it includes or
     * is derivative of works licensed under the GNU General Public License or
     * other free or open source software licenses.
     * See COPYRIGHT.php for copyright notices and details.
     */

    // no direct accessdefined('_JEXEC') or die('Restricted access');
    /**
     * This is a file to add template specific chrome to pagination rendering.
     *
     * pagination_list_footer
     *     Input variable $list is an array with offsets:
     *         $list[limit]        : int
     *         $list[limitstart]    : int
     *         $list[total]        : int
     *         $list[limitfield]    : string
     *         $list[pagescounter]    : string
     *         $list[pageslinks]    : string
     *
     * pagination_list_render
     *     Input variable $list is an array with offsets:
     *         $list[all]
     *             [data]        : string
     *             [active]    : boolean
     *         $list[start]
     *             [data]        : string
     *             [active]    : boolean
     *         $list[previous]
     *             [data]        : string
     *             [active]    : boolean
     *         $list[next]
     *             [data]        : string
     *             [active]    : boolean
     *         $list[end]
     *             [data]        : string
     *             [active]    : boolean
     *         $list[pages]
     *             [{PAGE}][data]        : string
     *             [{PAGE}][active]    : boolean
     *
     * pagination_item_active
     *     Input variable $item is an object with fields:
     *         $item->base    : integer
     *         $item->link    : string
     *         $item->text    : string
     *
     * pagination_item_inactive
     *     Input variable $item is an object with fields:
     *         $item->base    : integer
     *         $item->link    : string
     *         $item->text    : string
     *
     * This gives template designers ultimate control over how pagination is rendered.
     *
     * NOTE: If you override pagination_item_active OR pagination_item_inactive you MUST override them both
     */


    function pagination_item_active(&$item)
    {
      
    $app JFactory::getApplication();

      
    //Override: Remove the hasTooltip class from the pagination.
      /*$title = '';
      if (!is_numeric($item->text))
      {
         JHtml::_('bootstrap.tooltip');
         $title = ' class="hasTooltip" title="' . $item->text . '"';
      }*/

      
    if ($app->isAdmin())
      {
        return 
    '<a href="#" onclick="document.adminForm.' $this->prefix
        
    'limitstart.value=' . ($item->base $item->base '0') . '; Joomla.submitform();return false;">' $item->text '</a>';
      }
      else
      {
        return 
    '<a href="' $item->link '" class="pagenav">' $item->text '</a>';
      }
    }


    function 
    pagination_item_inactive(&$item)
    {
      
    $app JFactory::getApplication();

      if (
    $app->isAdmin())
      {
        return 
    '<span>' $item->text '</span>';
      }
      else
      {
        return 
    '<span class="pagenav">' $item->text '</span>';
      }
    }

    Commentaire

    Annonce

    Réduire
    Aucune annonce pour le moment.

    Partenaire de l'association

    Réduire

    Hébergeur Web PlanetHoster
    Travaille ...
    X