Changeset 1701769
- Timestamp:
- 07/24/2017 04:25:53 PM (9 years ago)
- Location:
- sms-gateway/trunk
- Files:
-
- 4 edited
-
sms_gateway.php (modified) (1 diff)
-
templates/options_notifications.php (modified) (1 diff)
-
templates/options_send_sms.php (modified) (1 diff)
-
templates/options_sent_msgs.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sms-gateway/trunk/sms_gateway.php
r1701756 r1701769 199 199 add_action( 'admin_enqueue_scripts', 'sms_sender_action_javascript' ); 200 200 function sms_sender_action_javascript() { 201 wp_enqueue_style('sms_sender_style', WP_PLUGIN_URL.'/sms _gateway/includes/css/style.css');202 wp_enqueue_script('sms_sender_script_ajax', WP_PLUGIN_URL.'/sms _gateway/includes/js/ajax.js', array('jquery'), null, true);203 wp_enqueue_script('sms_sender_script_forms', WP_PLUGIN_URL.'/sms _gateway/includes/js/form.js', array('jquery'), null, true);201 wp_enqueue_style('sms_sender_style', WP_PLUGIN_URL.'/sms-gateway/includes/css/style.css'); 202 wp_enqueue_script('sms_sender_script_ajax', WP_PLUGIN_URL.'/sms-gateway/includes/js/ajax.js', array('jquery'), null, true); 203 wp_enqueue_script('sms_sender_script_forms', WP_PLUGIN_URL.'/sms-gateway/includes/js/form.js', array('jquery'), null, true); 204 204 //echo $_SERVER['REQUEST_URI']; exit; 205 205 if ($_GET['page']=='sms_sender_options'){ 206 wp_enqueue_script('sms_sender_script_sort', WP_PLUGIN_URL.'/sms _gateway/includes/js/sort.js', array('jquery'), null, true);206 wp_enqueue_script('sms_sender_script_sort', WP_PLUGIN_URL.'/sms-gateway/includes/js/sort.js', array('jquery'), null, true); 207 207 } 208 208 } -
sms-gateway/trunk/templates/options_notifications.php
r1701239 r1701769 1 1 <div class = "wrap"> 2 <h2>Настройки SMS Sender</h2>2 <h2>Настройки SMS Gateway</h2> 3 3 <?php 4 4 if (!sms_sender_check_api_key()) { -
sms-gateway/trunk/templates/options_send_sms.php
r1701239 r1701769 1 1 <div class = "wrap"> 2 <h2>Настройки SMS Sender</h2>2 <h2>Настройки SMS Gateway</h2> 3 3 <?php 4 4 if (!sms_sender_check_api_key()) { -
sms-gateway/trunk/templates/options_sent_msgs.php
r1701239 r1701769 1 1 <div class = "wrap"> 2 <h2>Настройки SMS Sender</h2>2 <h2>Настройки SMS Gateway</h2> 3 3 <?php 4 4 if (!sms_sender_check_api_key()) {
Note: See TracChangeset
for help on using the changeset viewer.