mirror of
https://github.com/e107inc/e107.git
synced 2025-08-31 02:00:14 +02:00
18 lines
722 B
PHP
18 lines
722 B
PHP
<?php
|
|
/**
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2017 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*/
|
|
|
|
|
|
/**
|
|
* {XURL_ICONS} template
|
|
*/
|
|
$SOCIAL_XURL_TEMPLATE['default']['start'] = '<p class="xurl-social-icons hidden-print">';
|
|
$SOCIAL_XURL_TEMPLATE['default']['item'] = '<a target="_blank" rel="noopener noreferrer" href="{XURL_ICONS_HREF}" data-tooltip-position="top" class="e-tip social-icon social-{XURL_ICONS_ID}" title="{XURL_ICONS_TITLE}" aria-label="{XURL_ICONS_TITLE}"><span class="e-social-{XURL_ICONS_ID} {XURL_ICONS_CLASS}"></span></a>';
|
|
$SOCIAL_XURL_TEMPLATE['default']['end'] = '</p>';
|