Changeset 1146816
- Timestamp:
- 04/27/2015 08:44:56 AM (11 years ago)
- Location:
- exxica-social-marketing
- Files:
-
- 14 edited
- 1 copied
-
tags/1.1.8.1 (copied) (copied from exxica-social-marketing/trunk)
-
tags/1.1.8.1/README.txt (modified) (4 diffs)
-
tags/1.1.8.1/admin/class-exxica-social-marketing-handlers.php (modified) (7 diffs)
-
tags/1.1.8.1/admin/partials/exxica-social-marketing-admin-display.php (modified) (2 diffs)
-
tags/1.1.8.1/exxica-social-marketing.php (modified) (1 diff)
-
tags/1.1.8.1/includes/class-exxica-social-marketing-activator.php (modified) (1 diff)
-
tags/1.1.8.1/includes/class-exxica-social-marketing-handlers.php (modified) (3 diffs)
-
tags/1.1.8.1/includes/class-exxica-social-marketing.php (modified) (1 diff)
-
trunk/README.txt (modified) (4 diffs)
-
trunk/admin/class-exxica-social-marketing-handlers.php (modified) (7 diffs)
-
trunk/admin/partials/exxica-social-marketing-admin-display.php (modified) (2 diffs)
-
trunk/exxica-social-marketing.php (modified) (1 diff)
-
trunk/includes/class-exxica-social-marketing-activator.php (modified) (1 diff)
-
trunk/includes/class-exxica-social-marketing-handlers.php (modified) (3 diffs)
-
trunk/includes/class-exxica-social-marketing.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
exxica-social-marketing/tags/1.1.8.1/README.txt
r1142589 r1146816 45 45 This plugin is a free 45 days trial version. 46 46 47 After that it's €9.99/month. 48 47 49 == Installation == 48 50 = Automatic installation = … … 60 62 61 63 == Frequently Asked Questions == 64 = What is the requirements of my server? = 65 Our plugin uses PHP cURL (http://php.net/manual/en/book.curl.php) to transfer publication data to our server, this is the only thing that is required by your server. 66 62 67 = What if I have discovered a bug? = 63 68 If you have discovered a bug or something that you are not happy with, please let us know at support@exxica.com. 64 69 65 70 = I have authorized, but my settings page is not showing any publishing options, why? = 66 Did you remember to press the **Refresh** link? This will sync your server to ours . Enabling your publishing options.71 Did you remember to press the **Refresh** link? This will sync your server to ours and enabling your publishing options. 67 72 68 73 = Why isn't Social Marketing Scheduler available in my language? = 69 74 We only have capacity to translate this plugin for English and Norwegian users. If you wish to contribute, please feel free to do so by using a gettext translator (www.poedit.net) and sending the files to us (.mo and .po). 75 76 = Why can't I delete publications that's been published? = 77 You cannot delete them after their time has expired (and they are published) because we think you should have a record of what you have published at any time. There may be a feature in the future to give you an option. But generally we recommend keeping all publications on record, that way you can duplicate old publications, and see how often you've posted them before and with what text or image. You can, of course, remove publications before they publish. 70 78 71 79 == Screenshots == … … 78 86 79 87 == Changelog == 88 = 1.1.8.1 = 89 - Added check for PHP cURL. 90 - Updated FAQ. 91 80 92 = 1.1.8 = 81 93 - Updated for WP 4.2. … … 140 152 141 153 == Upgrade Notice == 154 = 1.1.8.1 = 155 Added requirement. Update recommended. 156 142 157 = 1.1.8 = 143 158 Minor patch. Update recommended. -
exxica-social-marketing/tags/1.1.8.1/admin/class-exxica-social-marketing-handlers.php
r1122141 r1146816 341 341 public function create_post_data() 342 342 { 343 $return = array( 'success' => false ); 343 344 if($this->loaded == true) { 344 345 $success = false; $message = ''; $data = array(); $to_exxica = array(); … … 412 413 )); 413 414 } 414 } else {415 $return = array( 'success' => false );416 415 } 417 416 $this->return_data( $return ); … … 428 427 public function update_post_data() 429 428 { 429 $return = array( 'success' => false ); 430 430 if($this->loaded == true) { 431 431 $success = false; $message = ''; $data = array(); $to_exxica = array(); … … 499 499 )); 500 500 } 501 } else {502 $return = array( 'success' => false );503 501 } 504 502 $this->return_data( $return ); … … 515 513 public function destroy_post_data() 516 514 { 515 $return = array( 'success' => false ); 517 516 if($this->loaded == true) { 518 517 $success = false; $message = ''; $data = array(); $to_exxica = array(); … … 556 555 )); 557 556 } 558 } else {559 $return = array( 'success' => false );560 557 } 561 558 $this->return_data( $return ); … … 578 575 header('Content-Type: text/html'); 579 576 echo json_encode( $return ); 580 die();581 577 } 582 578 -
exxica-social-marketing/tags/1.1.8.1/admin/partials/exxica-social-marketing-admin-display.php
r1142589 r1146816 13 13 */ 14 14 ?> 15 <?php if(!function_exists('curl_version')) : ?> 16 <h1 style="color:red;">WARNING: PHP cURL is disabled on your server.</h1> 17 <p>Exxica Social Marketing Scheduler requires cURL to work. Please consult your hosting provider to turn on PHP cURL.</p> 18 <?php else : ?> 15 19 <table style="width:100%;background-color:#fff;border:1px solid #ddd;padding:10px;"> 16 20 <tbody> … … 397 401 </tbody> 398 402 </table> 403 <?php endif; ?> -
exxica-social-marketing/tags/1.1.8.1/exxica-social-marketing.php
r1142589 r1146816 16 16 * Plugin Name: Exxica Social Marketing 17 17 * Description: A tool that helps you publish your WordPress posts and pages to your selected social platforms. It has been made to help planning and scheduling publications on different social platforms which again increases traffic on your website. 18 * Version: 1.1.8 18 * Version: 1.1.8.1 19 19 * Author: Gaute Rønningen 20 20 * Author URI: http://exxica.com/ -
exxica-social-marketing/tags/1.1.8.1/includes/class-exxica-social-marketing-activator.php
r1122141 r1146816 30 30 $sql = ''; 31 31 32 $latest_version = '1.1. 7.2';32 $latest_version = '1.1.8.1'; 33 33 $installed_version = get_option('exxica_social_marketing_version', false); 34 34 -
exxica-social-marketing/tags/1.1.8.1/includes/class-exxica-social-marketing-handlers.php
r1033790 r1146816 919 919 public function sendExternalData( $doAction = 'create', $input = array() ) 920 920 { 921 $raisedError = false;922 921 if( $doAction == 'create' ) { 923 922 foreach( $input['data'] as $item ) { … … 977 976 } 978 977 } else { 979 $out = array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') ); 980 $raisedError = true; 978 return array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') ); 981 979 } 982 980 … … 996 994 $to = "http://api.exxica.com/publisher/exxica/publish"; 997 995 //$to = "http://api.exxica.com/publisher/test/publish"; 998 if(!$raisedError) $out = $this->postData( $to, $atts );999 996 1000 return $ out;997 return $this->postData( $to, $atts ); 1001 998 } 1002 999 -
exxica-social-marketing/tags/1.1.8.1/includes/class-exxica-social-marketing.php
r1122141 r1146816 61 61 62 62 $this->plugin_name = 'exxica-social-marketing'; 63 $this->version = '1.1. 7.2';63 $this->version = '1.1.8.1'; 64 64 65 65 $this->load_dependencies(); -
exxica-social-marketing/trunk/README.txt
r1142589 r1146816 45 45 This plugin is a free 45 days trial version. 46 46 47 After that it's €9.99/month. 48 47 49 == Installation == 48 50 = Automatic installation = … … 60 62 61 63 == Frequently Asked Questions == 64 = What is the requirements of my server? = 65 Our plugin uses PHP cURL (http://php.net/manual/en/book.curl.php) to transfer publication data to our server, this is the only thing that is required by your server. 66 62 67 = What if I have discovered a bug? = 63 68 If you have discovered a bug or something that you are not happy with, please let us know at support@exxica.com. 64 69 65 70 = I have authorized, but my settings page is not showing any publishing options, why? = 66 Did you remember to press the **Refresh** link? This will sync your server to ours . Enabling your publishing options.71 Did you remember to press the **Refresh** link? This will sync your server to ours and enabling your publishing options. 67 72 68 73 = Why isn't Social Marketing Scheduler available in my language? = 69 74 We only have capacity to translate this plugin for English and Norwegian users. If you wish to contribute, please feel free to do so by using a gettext translator (www.poedit.net) and sending the files to us (.mo and .po). 75 76 = Why can't I delete publications that's been published? = 77 You cannot delete them after their time has expired (and they are published) because we think you should have a record of what you have published at any time. There may be a feature in the future to give you an option. But generally we recommend keeping all publications on record, that way you can duplicate old publications, and see how often you've posted them before and with what text or image. You can, of course, remove publications before they publish. 70 78 71 79 == Screenshots == … … 78 86 79 87 == Changelog == 88 = 1.1.8.1 = 89 - Added check for PHP cURL. 90 - Updated FAQ. 91 80 92 = 1.1.8 = 81 93 - Updated for WP 4.2. … … 140 152 141 153 == Upgrade Notice == 154 = 1.1.8.1 = 155 Added requirement. Update recommended. 156 142 157 = 1.1.8 = 143 158 Minor patch. Update recommended. -
exxica-social-marketing/trunk/admin/class-exxica-social-marketing-handlers.php
r1122141 r1146816 341 341 public function create_post_data() 342 342 { 343 $return = array( 'success' => false ); 343 344 if($this->loaded == true) { 344 345 $success = false; $message = ''; $data = array(); $to_exxica = array(); … … 412 413 )); 413 414 } 414 } else {415 $return = array( 'success' => false );416 415 } 417 416 $this->return_data( $return ); … … 428 427 public function update_post_data() 429 428 { 429 $return = array( 'success' => false ); 430 430 if($this->loaded == true) { 431 431 $success = false; $message = ''; $data = array(); $to_exxica = array(); … … 499 499 )); 500 500 } 501 } else {502 $return = array( 'success' => false );503 501 } 504 502 $this->return_data( $return ); … … 515 513 public function destroy_post_data() 516 514 { 515 $return = array( 'success' => false ); 517 516 if($this->loaded == true) { 518 517 $success = false; $message = ''; $data = array(); $to_exxica = array(); … … 556 555 )); 557 556 } 558 } else {559 $return = array( 'success' => false );560 557 } 561 558 $this->return_data( $return ); … … 578 575 header('Content-Type: text/html'); 579 576 echo json_encode( $return ); 580 die();581 577 } 582 578 -
exxica-social-marketing/trunk/admin/partials/exxica-social-marketing-admin-display.php
r1142589 r1146816 13 13 */ 14 14 ?> 15 <?php if(!function_exists('curl_version')) : ?> 16 <h1 style="color:red;">WARNING: PHP cURL is disabled on your server.</h1> 17 <p>Exxica Social Marketing Scheduler requires cURL to work. Please consult your hosting provider to turn on PHP cURL.</p> 18 <?php else : ?> 15 19 <table style="width:100%;background-color:#fff;border:1px solid #ddd;padding:10px;"> 16 20 <tbody> … … 397 401 </tbody> 398 402 </table> 403 <?php endif; ?> -
exxica-social-marketing/trunk/exxica-social-marketing.php
r1142589 r1146816 16 16 * Plugin Name: Exxica Social Marketing 17 17 * Description: A tool that helps you publish your WordPress posts and pages to your selected social platforms. It has been made to help planning and scheduling publications on different social platforms which again increases traffic on your website. 18 * Version: 1.1.8 18 * Version: 1.1.8.1 19 19 * Author: Gaute Rønningen 20 20 * Author URI: http://exxica.com/ -
exxica-social-marketing/trunk/includes/class-exxica-social-marketing-activator.php
r1122141 r1146816 30 30 $sql = ''; 31 31 32 $latest_version = '1.1. 7.2';32 $latest_version = '1.1.8.1'; 33 33 $installed_version = get_option('exxica_social_marketing_version', false); 34 34 -
exxica-social-marketing/trunk/includes/class-exxica-social-marketing-handlers.php
r1033790 r1146816 919 919 public function sendExternalData( $doAction = 'create', $input = array() ) 920 920 { 921 $raisedError = false;922 921 if( $doAction == 'create' ) { 923 922 foreach( $input['data'] as $item ) { … … 977 976 } 978 977 } else { 979 $out = array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') ); 980 $raisedError = true; 978 return array('success' => false, 'error' => array( 'code' => 1, 'message' => 'Unrecognized action.', 'type' => 'ActionException') ); 981 979 } 982 980 … … 996 994 $to = "http://api.exxica.com/publisher/exxica/publish"; 997 995 //$to = "http://api.exxica.com/publisher/test/publish"; 998 if(!$raisedError) $out = $this->postData( $to, $atts );999 996 1000 return $ out;997 return $this->postData( $to, $atts ); 1001 998 } 1002 999 -
exxica-social-marketing/trunk/includes/class-exxica-social-marketing.php
r1122141 r1146816 61 61 62 62 $this->plugin_name = 'exxica-social-marketing'; 63 $this->version = '1.1. 7.2';63 $this->version = '1.1.8.1'; 64 64 65 65 $this->load_dependencies();
Note: See TracChangeset
for help on using the changeset viewer.