Changeset 2722034
- Timestamp:
- 05/11/2022 01:50:10 PM (4 years ago)
- Location:
- aomailer/trunk
- Files:
-
- 3 edited
-
aomailer_plugin.php (modified) (1 diff)
-
includes/AomailerSMSApi.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
aomailer/trunk/aomailer_plugin.php
r2689259 r2722034 4 4 Plugin URI: https://targetsms.ru/otpravka-sms-iz-wordpress-woocommerce 5 5 Author: TargetSMS 6 Version: 1.0.4 06 Version: 1.0.41 7 7 Author URI: https://targetsms.ru/ 8 8 Description: С помощью плагина "TargetSMS.ru: СМС/Email-рассылки и уведомления" Вы можете отправлять произвольные СМС-рассылки и автоматические СМС и Email-уведомления о статусах заказов администраторам и покупателям интернет-магазина, работающего на платформе WordPress WooCommerce. -
aomailer/trunk/includes/AomailerSMSApi.php
r2689259 r2722034 213 213 ], 214 214 'stats' => [ 215 'date_start' => !empty($this->date_start) ? date('Y-m-d', strtotime($this->date_start)) :date('Y-m-d'),216 'date_stop' => !empty($this->date_stop) ? date('Y-m-d', strtotime($this->date_stop)) :date('Y-m-d'),215 'date_start' => !empty($this->date_start) ? gmdate('Y-m-d', strtotime($this->date_start)) : gmdate('Y-m-d'), 216 'date_stop' => !empty($this->date_stop) ? gmdate('Y-m-d', strtotime($this->date_stop)) : gmdate('Y-m-d'), 217 217 'state' => $this->state, 218 218 'originator' => $this->originator, 219 219 'phone' => !empty($this->phone) ? $this->phone : '', 220 220 'operator' => !empty($this->operator) ? $this->operator : '', 221 'from_hour' => $this->from_hour,222 'from_minute' => $this->from_minute,223 'to_hour' => $this->to_hour,224 'to_minute' => $this->to_minute,221 'from_hour' => !empty($this->date_start) ? gmdate('H', strtotime($this->date_stop)) : $this->from_hour, 222 'from_minute' => !empty($this->date_start) ? gmdate('m', strtotime($this->date_stop)) : $this->from_minute, 223 'to_hour' => !empty($this->date_start) ? gmdate('H', strtotime($this->date_stop)) : $this->to_hour, 224 'to_minute' => !empty($this->date_start) ? gmdate('m', strtotime($this->date_stop)) : $this->to_minute, 225 225 ], 226 226 ]; -
aomailer/trunk/readme.txt
r2689259 r2722034 3 3 Tags: targetsms 4 4 Requires at least: 4.9.9 5 Tested up to: 5.7.25 Tested up to: 6.0 6 6 Requires PHP: 5.2 7 Stable tag: 1.0.4 07 Stable tag: 1.0.41 8 8 TargetSMS.ru: СМС/Email-рассылки и уведомления 9 9 == Description ==
Note: See TracChangeset
for help on using the changeset viewer.