Current Path :
/
home
/
develito
/
public_html
/
libraries-new
/
cegcore2
/
helpers
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/public_html/libraries-new/cegcore2/helpers/sorter.php
<?php /** * ChronoCMS version 1.0 * Copyright (c) 2012 ChronoCMS.com, All rights reserved. * Author: (ChronoCMS.com Team) * license: Please read LICENSE.txt * Visit http://www.ChronoCMS.com for regular updates and information. **/ namespace G2\H; /* @copyright:ChronoEngine.com @license:GPLv2 */defined('_JEXEC') or die('Restricted access'); defined("GCORE_SITE") or die; class Sorter extends \G2\L\Helper{ var $url; function __construct(&$view = null, $config = []){ parent::__construct($view, $config); $this->url = !empty($this->url) ? $this->url : \G2\L\Url::current(); if(!empty($this->urlparams)){ $params = []; foreach($this->urlparams as $p){ $params[$p] = $this->data($p); } $this->url = \G2\L\Url::build($this->url, $params); } } public function link($text, $alias){ $orderdir = \GApp::session()->get('helpers.sorter.'.$alias.'.dir', ''); $orderdir_new = ($orderdir == '') ? 'asc' : ($orderdir == 'asc' ? 'desc' : 'asc'); $url = r2(\G2\L\Url::build($this->url, array('orderfld' => $alias, 'orderdir' => $orderdir_new))); $cancel_url = r2(\G2\L\Url::build($this->url, array('orderfld' => $alias, 'orderdir' => 'clear'))); $HtmlHelper = new \G2\H\Html(); $sort_link = $HtmlHelper->attrs(['href' => $url])->content($text.' <i class="sort alphabet '.$orderdir.'ending icon"></i>')->tag('a'); if(!empty($orderdir)){ $cancel_link = $HtmlHelper->attrs(['href' => $cancel_url])->content('<i class="cancel icon small inverted red"></i>')->tag('a'); }else{ $cancel_link = ''; } unset($HtmlHelper); return $sort_link.$cancel_link; } }