示例#1
0
jimport('joomla.plugin.helper');
jimport('joomla.html.parameter');
// < 3.0
// Content views
define('LIKEBTN_VIEW_CONTENT', 'article');
define('LIKEBTN_VIEW_K2_ITEM', 'item');
define('LIKEBTN_VIEW_K2_ITEMLIST', 'itemlist');
define('LIKEBTN_VIEW_VIRTUEMART', 'productdetails');
define('LIKEBTN_VIEW_FRONTPAGE', 'frontpage');
define('LIKEBTN_VIEW_FAVORITE', 'featured');
define('LIKEBTN_VIEW_CATEGORY', 'category');
define('LIKEBTN_VIEW_SECTION', 'section');
// Content types
define('LIKEBTN_CONTENT_TYPE_CUSTOM_ITEM', '');
// Process ajax requests
plgContentLikebtn::ajaxController();
class plgContentLikebtn extends JPlugin
{
    const PLG_TYPE = 'content';
    const PLG_NAME = 'likebtn';
    // Shortcode switching off the likebtn
    const SHORTCODE_OFF = 'likebtn-off';
    const SHORTCODE = 'likebtn';
    // Content type settings admin field name.
    const ADMIN_FIELD_NAME = 'content_type_settings';
    // General settings.
    public static $likebtn_general_settings = array('show' => '0', 'use_settings_from' => '', 'content_view_mode' => 'both', 'exclude_categories' => array(), 'user_logged_in' => 'all', 'position' => 'bottom', 'alignment' => 'left', 'html_before' => '', 'html_after' => '');
    // LikeBtn settings.
    public static $likebtn_settings = array("lang" => array("default" => "en"), "group_identifier " => array("default" => ""), "domain_from_parent" => array("default" => '0'), "share_url" => array("default" => ''), "share_enabled" => array("default" => '1'), "item_url" => array("default" => ''), "item_title" => array("default" => ''), "item_description" => array("default" => ''), "item_image" => array("default" => ''), "show_like_label" => array("default" => '1'), "show_dislike_label" => array("default" => '0'), "popup_dislike" => array("default" => '0'), "popup_on_load" => array("default" => '0'), "like_enabled" => array("default" => '1'), "dislike_enabled" => array("default" => '1'), "icon_like_show" => array("default" => '1'), "icon_dislike_show" => array("default" => '1'), "lazy_load" => array("default" => '0'), "display_only" => array("default" => '0'), "unlike_allowed" => array("default" => '1'), "like_dislike_at_the_same_time" => array("default" => '0'), "revote_period" => array("default" => ''), "counter_type" => array("default" => "number"), "counter_clickable" => array("default" => '0'), "counter_show" => array("default" => "1"), "counter_padding" => array("default" => ''), "counter_zero_show" => array("default" => '0'), "style" => array("default" => 'white'), "addthis_pubid" => array("default" => ''), "addthis_service_codes" => array("default" => ''), "loader_show" => array("default" => '0'), "loader_image" => array("default" => ''), "tooltip_enabled" => array("default" => '1'), "show_copyright" => array("default" => '1'), "popup_html" => array("default" => ''), "popup_donate" => array("default" => ''), "popup_content_order" => array("default" => 'popup_share,popup_donate,popup_html'), "popup_enabled" => array("default" => '1'), "popup_position" => array("default" => 'top'), "popup_style" => array("default" => 'light'), "popup_hide_on_outside_click" => array("default" => '1'), "event_handler" => array("default" => ''), "info_message" => array("default" => '1'), "i18n_like" => array("default" => ''), "i18n_dislike" => array("default" => ''), "i18n_after_like" => array("default" => ''), "i18n_after_dislike" => array("default" => ''), "i18n_like_tooltip" => array("default" => ''), "i18n_dislike_tooltip" => array("default" => ''), "i18n_unlike_tooltip" => array("default" => ''), "i18n_undislike_tooltip" => array("default" => ''), "i18n_share_text" => array("default" => ''), "i18n_popup_close" => array("default" => ''), "i18n_popup_text" => array("default" => ''), "i18n_popup_donate" => array("default" => ''));
    // LikeBtn styles.
    public static $likebtn_styles = array("white" => "white", "lightgray" => "lightgray", "gray" => "gray", "black" => "black", "padded" => "padded", "drop" => "drop", "line" => "line", "github" => "github", "transparent" => "transparent", "youtube" => "youtube", "habr" => "habr", "heartcross" => "heartcross", "plusminus" => "plusminus", "google" => "google", "greenred" => "greenred", "large" => "large", "elegant" => "elegant", "disk" => "disk", "squarespace" => "squarespace", "slideshare" => "slideshare", "baidu" => "baidu", "uwhite" => "uwhite", "ublack" => "ublack", "uorange" => "uorange", "ublue" => "ublue", "ugreen" => "ugreen", "direct" => "direct", "homeshop" => "homeshop");