Plugin Directory

Changeset 1219123


Ignore:
Timestamp:
08/12/2015 12:31:06 PM (11 years ago)
Author:
mojwp
Message:

Add link "My shordcodes" to Admin Bar

Location:
scode-by-mojwp/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • scode-by-mojwp/trunk/assets/css/admin-style.css

    r1186666 r1219123  
    1 
    21a#addShortcodeModalButton:link, a#addShortcodeModalButton:visited {
    32    background: #2ea2cc;
  • scode-by-mojwp/trunk/includes/admin.php

    r1189583 r1219123  
    1010    if ($hook_suffix == 'toplevel_page_scode' || $hook_suffix == 'scode_page_scode_support') {
    1111        wp_enqueue_style('scode_font_awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css', array(), false);
    12         wp_enqueue_style('scode_backend_style', SCODE_PLUGIN_URL.'assets/css/admin-style.css', array(), false);
    1312        wp_enqueue_script('jquery-ui-position');
    1413        wp_enqueue_script('scode_backend_js', SCODE_PLUGIN_URL.'assets/js/jquery.scode.js', array('jquery'), false, true);
    1514       
    1615    }
     16   
     17    wp_enqueue_style('scode_backend_style', SCODE_PLUGIN_URL.'assets/css/admin-style.css', array(), false);
    1718}
    1819
  • scode-by-mojwp/trunk/readme.txt

    r1189590 r1219123  
    22Contributors: mojwp, kaliyan
    33Tags: AJAX, shortcode, shortcodes, tabs, Post, posts, image, seo, page, pages, widget, CSS, editor, shortlinks, filter, price, admin
    4 Requires at least: 4.2.2
    5 Tested up to: 4.2.2
     4Requires at least: 4.0
     5Tested up to: 4.2.4
    66Stable tag: trunk
    77
     
    7979== Changelog ==
    8080
     81= 1.1.2 =
     82Add link "My shordcodes" to Admin Bar
     83
    8184= 1.1.1 =
    8285Update instruction
  • scode-by-mojwp/trunk/scode.php

    r1189587 r1219123  
    55    Description: Easy way to creat and manage shortcode from Admin panel site. Создавайте и управляйте шорткодами прямо из админки сайта.
    66    Author: mojWP
    7     Version: 1.1.1
     7    Version: 1.1.2
    88    Author URI: http://mojwp.ru/
    99    Text Domain: scode
     
    1717}
    1818
    19 define('SCODE_VERSION', '1.1.1');
     19define('SCODE_VERSION', '1.1.2');
    2020define('SCODE_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2121define('SCODE_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    3232
    3333require_once(SCODE_PLUGIN_DIR . '/includes/functions.php');
     34require_once(SCODE_PLUGIN_DIR . '/includes/global.php');
    3435if (is_admin()) {
    3536    require_once(SCODE_PLUGIN_DIR . '/includes/admin.php');
Note: See TracChangeset for help on using the changeset viewer.