File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/twitter/src/Twitter/WordPress/Widgets/Buttons/Follow.php
<?php
/*
The MIT License (MIT)

Copyright (c) 2015 Twitter Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

namespace Twitter\WordPress\Widgets\Buttons;

/**
 * Add Twitter Follow button as a WordPress widget
 *
 * @link http://codex.wordpress.org/Widgets_API WordPress widgets API
 *
 * @since 1.0.0
 */
class Follow extends \Twitter\WordPress\Widgets\Widget implements \Twitter\WordPress\Widgets\WidgetInterface
{

	/**
	 * Widget base ID
	 *
	 * Widget identifiers will derive from the base based on their positioning. e.g. twitter-follow-1
	 *
	 * @since 1.0.0
	 *
	 * @type string
	 */
	const BASE_ID = 'twitter-follow';

	/**
	 * Register widget with WordPress
	 *
	 * @since 1.0.0
	 */
	public function __construct()
	{
		parent::__construct(
			static::BASE_ID, // Base ID
			__( 'Twitter Follow Button', 'twitter' ), // name
			array(
				'description' => static::getDescription(), // args
			)
		);
	}

	/**
	 * Get the base ID used to identify widgets of this type installed in a widget area
	 *
	 * @since 2.0.1
	 *
	 * @return string widget base ID
	 */
	public static function getBaseID()
	{
		return static::BASE_ID;
	}

	/**
	 * Describe the functionality offered by the widget
	 *
	 * @since 2.0.0
	 *
	 * @return string description of the widget functionality
	 */
	public static function getDescription()
	{
		return __( 'Lets a viewer follow your Twitter account', 'twitter' );
	}

	/**
	 * Front-end display of widget
	 *
	 * @since 1.0.0
	 *
	 * @param array $args     Display arguments including before_title, after_title, before_widget, and after_widget.
	 * @param array $instance The settings for the particular instance of the widget
	 *
	 * @return void
	 */
	public function widget( $args, $instance )
	{
		$follow_button_html = \Twitter\WordPress\Shortcodes\Buttons\Follow::shortcodeHandler( $instance );
		if ( ! $follow_button_html ) {
			return;
		}

		// Allow HTML markup set by author, site
		// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
		echo $args['before_widget'];

		/** This filter is documented in wp-includes/default-widgets.php */
		$title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
		if ( $title ) {
			// Allow HTML markup set by author, site
			// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
			echo $args['before_title'];

			// Allow HTML in title. Link to Twitter profile might be common use
			// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
			echo $title;

			// Allow HTML markup set by author, site
			// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
			echo $args['after_title'];
		}

		// escaped in markup builder
		// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
		echo $follow_button_html;

		// Allow HTML markup set by author, site
		// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
		echo $args['after_widget'];
	}

	/**
	 * Settings update form
	 *
	 * @since 1.0.0
	 *
	 * @param array $instance Current settings
	 *
	 * @return void
	 */
	public function form( $instance )
	{
		$instance = wp_parse_args(
			(array) $instance,
			array_merge(
				array( 'title' => '' ),
				\Twitter\WordPress\Shortcodes\Buttons\Follow::$SHORTCODE_DEFAULTS
			)
		);

		$this->titleFormElements( $instance );
		$close_void_element = \Twitter\WordPress\Helpers\HTMLBuilder::closeVoidHTMLElement();

?>
		<p><label for="<?php echo esc_attr( $this->get_field_id( 'screen_name' ) ); ?>"><?php echo esc_html( __( '@username:', 'twitter' ) ); ?></label>
		<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'screen_name' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'screen_name' ) ); ?>" type="text" pattern="<?php echo esc_attr( \Twitter\Helpers\Validators\ScreenName::getPattern() ); ?>" inputmode="verbatim" spellcheck="false" maxlength="<?php echo esc_attr( \Twitter\Helpers\Validators\ScreenName::MAX_LENGTH ); ?>" value="<?php echo esc_attr( $instance['screen_name'] ); ?>"<?php
			// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
			echo $close_void_element;
		?>></p>

		<p><input class="checkbox" type="checkbox" id="<?php echo esc_attr( $this->get_field_id( 'show_screen_name' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'show_screen_name' ) ); ?>" value="1"<?php
			checked( $instance['show_screen_name'] );
			// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
			echo $close_void_element;
		?>>
		<label for="<?php echo esc_attr( $this->get_field_id( 'show_screen_name' ) ); ?>"><?php echo esc_html( __( 'Show username?', 'twitter' ) ); ?></label></p>

		<p><input class="checkbox" type="checkbox" id="<?php echo esc_attr( $this->get_field_id( 'show_count' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'show_count' ) ); ?>" value="1"<?php
			checked( $instance['show_count'] );
			// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
			echo $close_void_element;
		?>>
		<label for="<?php echo esc_attr( $this->get_field_id( 'show_count' ) ); ?>"><?php echo esc_html( __( 'Show number of followers?', 'twitter' ) ); ?></label></p>

		<p><label for="<?php echo esc_attr( $this->get_field_id( 'size' ) ); ?>"><?php echo esc_html( __( 'Button size:', 'twitter' ) ); ?></label>
		<fieldset id="<?php echo esc_attr( $this->get_field_id( 'size' ) ); ?>">
			<label><input type="radio" name="<?php echo esc_attr( $this->get_field_name( 'size' ) ); ?>" value="medium"
				<?php
				checked( 'large' !== $instance['size'] );
				// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
				echo $close_void_element;
			?>>
			<?php echo esc_html( _x( 'medium', 'medium size button', 'twitter' ) ); ?> </label>
			<label><input type="radio" name="<?php echo esc_attr( $this->get_field_name( 'size' ) ); ?>" value="large"
				<?php
				checked( 'large' === $instance['size'] );
				// @codingStandardsIgnoreLine WordPress.XSS.EscapeOutput.OutputNotEscaped
				echo $close_void_element;
			?>>
			<?php echo esc_html( _x( 'large', 'large size button', 'twitter' ) ); ?> </label>
		</fieldset></p>
<?php
	}

	/**
	 * Update a widget instance
	 *
	 * @since 1.0.0
	 *
	 * @param array $new_instance New settings for this instance as input by the user via form()
	 * @param array $old_instance Old settings for this instance
	 *
	 * @return bool|array settings to save or false to cancel saving
	 */
	public function update( $new_instance, $old_instance )
	{
		$instance = array();
		$new_instance = (array) $new_instance;
		$title = trim( strip_tags( $new_instance['title'] ) );
		if ( $title ) {
			$instance['title'] = $title;
		}
		unset( $new_instance['title'] );

		foreach ( array( 'show_screen_name', 'show_count' ) as $bool_option ) {
			if ( isset( $new_instance[ $bool_option ] ) && $new_instance[ $bool_option ] ) {
				$new_instance[ $bool_option ] = true;
			} else {
				$new_instance[ $bool_option ] = false;
			}
		}

		$follow_button = \Twitter\Widgets\Buttons\Follow::fromArray( $new_instance );
		if ( ! $follow_button ) {
			return false;
		}

		$filtered_options = $follow_button->toArray();
		$screen_name = $follow_button->getScreenName();
		if ( $screen_name ) {
			$filtered_options['screen_name'] = $screen_name;
		}
		unset( $screen_name );

		// convert string to bool equivalent
		if ( isset( $filtered_options['show-screen-name'] ) ) {
			if ( 'false' == $filtered_options['show-screen-name'] ) {
				$filtered_options['show_screen_name'] = false;
			}
			unset( $filtered_options['show-screen-name'] );
		}
		if ( isset( $filtered_options['show-count'] ) ) {
			if ( 'false' == $filtered_options['show-count'] ) {
				$filtered_options['show_count'] = false;
			}
			unset( $filtered_options['show-count'] );
		}

		return array_merge( $instance, $filtered_options );
	}
}