PATH:
home
/
letacommog
/
supportleta
/
wp-content
/
plugins
/
social-count-plus
<?php /** * Plugin Name: Social Count Plus * Plugin URI: https://github.com/claudiosanches/social-count-plus * Description: Displays your numbers in Facebook, GitHub, Google+, Instagram, LinkedIn, Pinterest, SoundCloud, Steam Community, Tumblr, Twitch, Twitter, Vimeo, Youtube, posts, comments and users. * Author: Claudio Sanches * Author URI: https://claudiosanches.com/ * Version: 3.4.1 * License: GPLv2 or later * Text Domain: social-count-plus * Domain Path: /languages/ */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if ( ! class_exists( 'Social_Count_Plus' ) ) : /** * Social_Count_Plus main class. * * @package Social_Count_Plus * @category Core * @author Claudio Sanches */ class Social_Count_Plus { /** * Plugin version. * * @var string */ const VERSION = '3.4.1'; /** * Instance of this class. * * @var object */ protected static $instance = null; /** * Initialize the plugin. */ private function __construct() { // Load plugin text domain. add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); // Include classes. $this->includes(); $this->include_counters(); if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) { $this->admin_includes(); } // Widget. add_action( 'widgets_init', array( $this, 'register_widget' ) ); // Shortcode. add_shortcode( 'scp', array( 'Social_Count_Plus_Shortcodes', 'counter' ) ); // Scripts. add_action( 'wp_enqueue_scripts', array( $this, 'styles_and_scripts' ) ); } /** * Return an instance of this class. * * @return object A single instance of this class. */ public static function get_instance() { if ( null == self::$instance ) { self::$instance = new self; } return self::$instance; } /** * Load the plugin text domain for translation. */ public function load_plugin_textdomain() { load_plugin_textdomain( 'social-count-plus', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); } /** * Include admin actions. */ protected function admin_includes() { include dirname( __FILE__ ) . '/includes/admin/class-social-count-plus-admin.php'; } /** * Include plugin functions. */ protected function includes() { include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-generator.php'; include_once dirname( __FILE__ ) . '/includes/abstracts/abstract-social-count-plus-counter.php'; include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-view.php'; include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-widget.php'; include_once dirname( __FILE__ ) . '/includes/class-social-count-plus-shortcodes.php'; include_once dirname( __FILE__ ) . '/includes/social-count-plus-functions.php'; include_once dirname( __FILE__ ) . '/includes/social-count-plus-deprecated-functions.php'; } /** * Include counters. */ protected function include_counters() { foreach ( glob( realpath( dirname( __FILE__ ) ) . '/includes/counters/*.php' ) as $filename ) { include_once $filename; } } /** * Register widget. */ public function register_widget() { register_widget( 'SocialCountPlus' ); } /** * Register public styles and scripts. */ public function styles_and_scripts() { wp_register_style( 'social-count-plus', plugins_url( 'assets/css/counter.css', __FILE__ ), array(), Social_Count_Plus::VERSION, 'all' ); } } /** * Init the plugin. */ add_action( 'plugins_loaded', array( 'Social_Count_Plus', 'get_instance' ) ); endif;
[+]
..
[+]
languages
[-] uninstall.php
[edit]
[+]
assets
[-] readme.txt
[edit]
[+]
includes
[-] social-count-plus.php
[edit]