23 lines
No EOL
691 B
PHP
Executable file
23 lines
No EOL
691 B
PHP
Executable file
<?php
|
|
/** no direct access **/
|
|
defined('MECEXEC') or die();
|
|
|
|
/** @var stdClass $event */
|
|
|
|
// MEC Settings
|
|
$settings = $this->get_settings();
|
|
|
|
// Social on single page is disabled
|
|
if(!isset($settings['social_network_status']) || !$settings['social_network_status']) return;
|
|
|
|
$url = isset($event->data->permalink) ? $event->data->permalink : '';
|
|
if(trim($url) == '') return;
|
|
|
|
// Get social networks
|
|
$socials = $this->get_social_networks();
|
|
|
|
foreach($socials as $social)
|
|
{
|
|
if(!isset($settings['sn'][$social['id']]) || !$settings['sn'][$social['id']]) continue;
|
|
if(is_callable($social['function'])) echo call_user_func($social['function'], $url, $event, $social);
|
|
} |