0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.1.5b-1
/
standard
/
htdocs
/
inc
/
_core
/
ui
/
[
Home
]
File: _iconlegend.class.php
<?php /** * This file implements displaying of an Icons legend. * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2003-2011 by Francois Planque - {@link http://fplanque.com/} * * {@internal License choice * - If you have received this file as part of a package, please find the license.txt file in * the same folder or the closest folder above for complete license terms. * - If you have received this file individually (e-g: from http://cvs.sourceforge.net/viewcvs.py/evocms/) * then you must choose one of the following licenses before using the file: * - GNU General Public License 2 (GPL) - http://www.opensource.org/licenses/gpl-license.php * - Mozilla Public License 1.1 (MPL) - http://www.opensource.org/licenses/mozilla1.1.php * }} * * {@internal Open Source relicensing agreement: * PROGIDISTRI grants Francois PLANQUE the right to license * PROGIDISTRI's contributions to this file and the b2evolution project * under any OSI approved OSS license (http://www.opensource.org/licenses/). * }} * * @package evocore * * @author fplanque: Francois PLANQUE. * @author mbruneau: Marc BRUNEAU / PROGIDISTRI * * @version $Id: _iconlegend.class.php 9 2011-10-24 22:32:00Z fplanque $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); /** * Display icon legend. * * Use {@link get_IconLegend()} to get the instance. * * @package evocore */ class IconLegend { /** * List of used icon names * @var array */ var $icons = array(); /** * Add an icon with his legend to the icons array * * @param string name of the icon */ function add_icon( $icon ) { if( !in_array( $icon, $this->icons ) ) { $this->icons[] = $icon; } } /** * Display the icon legend */ function display_legend() { if( empty( $this->icons ) ) { return; } // There are some icons to display: echo '<div id="icon_legend">'.T_('Legend').': '; // Loop on all map array of filenames for icons to display icons list in the same order: foreach( $this->icons as $icon ) { $icon_info = get_icon_info($icon); if( ! $icon_info ) { continue; } echo '<span class="legend_element">'.get_icon( $icon ).' '; if( isset( $icon_info['legend'] ) ) { // Icon has a legend: echo $icon_info['legend'] . ' '; } else { // Icon has no legend so we use the alt: echo $icon_info['alt'] . ' '; } echo '</span>'; } echo '</div>'; } /** * Reset icons array */ function reset() { $this->icons[] = array(); } } /* * $Log: _iconlegend.class.php,v $ */ ?>