%PDF- %PDF-
Direktori : /proc/1857783/root/var/www/cwg/wp-content/plugins/addthis/backend/ |
Current File : //proc/1857783/root/var/www/cwg/wp-content/plugins/addthis/backend/AddThisGlobalOptionsTool.php |
<?php /** * +--------------------------------------------------------------------------+ * | Copyright (c) 2008-2017 AddThis, LLC | * +--------------------------------------------------------------------------+ * | This program is free software; you can redistribute it and/or modify | * | it under the terms of the GNU General Public License as published by | * | the Free Software Foundation; either version 2 of the License, or | * | (at your option) any later version. | * | | * | This program is distributed in the hope that it will be useful, | * | but WITHOUT ANY WARRANTY; without even the implied warranty of | * | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * | GNU General Public License for more details. | * | | * | You should have received a copy of the GNU General Public License | * | along with this program; if not, write to the Free Software | * | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | * +--------------------------------------------------------------------------+ */ require_once 'AddThisTool.php'; if (!class_exists('AddThisGlobalOptionsTool')) { /** * AddThis' tool class for putting JavaScript on page * * @category GlobalOptions * @package AddThisWordPress * @subpackage Tools * @author AddThis <help@addthis.com> * @license GNU General Public License, version 2 * @link http://addthis.com AddThis website */ class AddThisGlobalOptionsTool extends AddThisTool { protected $featureClassName = 'AddThisGlobalOptionsFeature'; public $prettyName = 'AddThis Script'; /** * This must be public as it's used in the tool's widget * * Returns HTML for adding the script onto a page * * @param array $args settings for this widget (we only use * widget_id) * @param array $instance settings for this particular tool, if not * being used from the tool settings (a widget instance) * * @return string this should be valid html */ public function getInlineCode($args = array(), $instance = array()) { if (is_feed()) { return ''; } $configs = $this->getFeatureConfigs(); $addthisWidgetUrl = $this->featureObject->getAddThisWidgetJavaScriptUrl(); if (!empty($configs['addthis_asynchronous_loading'])) { $async = ' async="async"'; } else { $async = ''; } $script = ' <script data-cfasync="false" type="text/javascript" src="' . admin_url('admin-ajax.php') . '?action='.$this->featureObject->publicJavaScriptAction.'"' . $async . ' > </script> <script data-cfasync="false" type="text/javascript" src="' . $addthisWidgetUrl . '"' . $async . ' ></script> '; return $script; } /** * This must be public as it's used in a callback for add_shortcode * * Returns HTML to use to replace a short tag for this tool. Includes * tags to identify its from a short code. * * @return string this should be valid html */ public function getInlineCodeForShortCode() { $html = '<!-- Created with a shortcode from an AddThis plugin -->'; $html .= '<!-- tool name: ' . $this->prettyName . ' -->'; $html .= $this->getInlineCode(); $html .= '<!-- End of short code snippet -->'; return $html; } } }