mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
12 lines
303 B
PHP
12 lines
303 B
PHP
<?php
|
|
|
|
require_once(e_PLUGIN."social/e_shortcode.php");
|
|
$sc = new social_shortcodes;
|
|
|
|
$body = $sc->sc_xurl_icons($parm);
|
|
|
|
$title = isset($parm['caption'][e_LANGUAGE]) ? (string) $parm['caption'][e_LANGUAGE] : LAN_PLUGIN_SOCIAL_NAME ;
|
|
|
|
e107::getRender()->tablerender($title, $body, 'social-xurl-menu');
|
|
|