Changeset 2443985
- Timestamp:
- 12/22/2020 12:44:54 AM (5 years ago)
- Location:
- brightedge-autopilot
- Files:
-
- 1 added
- 4 edited
-
assets/screenshot-2.png (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/View.php (modified) (2 diffs)
-
trunk/src/be_ixf_client.php (modified) (3 diffs)
-
trunk/src/constants.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
brightedge-autopilot/trunk/readme.txt
r2378322 r2443985 6 6 Author: BrightEdge 7 7 Requires PHP: 5.5 8 Tested up to: 5. 59 Version: 1.1. 68 Tested up to: 5.6 9 Version: 1.1.7 10 10 Copyright: BrightEdge Technologies, Inc. 11 11 License: www.brightedge.com/infrastructure-product-terms … … 25 25 26 26 == Changelog == 27 = 1.1.7 = 28 * Release date: Dec 17, 2020 29 30 **Update** 31 32 * Added fix for shortcode if the body content is empty 33 27 34 = 1.1.6 = 28 35 * Release date: June 29, 2020 -
brightedge-autopilot/trunk/src/View.php
r2378318 r2443985 19 19 } 20 20 21 // Display Comments in case of Empty body content for shortcode, currently it displays '[autopilot_shortcode]'. 22 if ((isset($this->controller->ixf_data)) && ($options[BEIXFConstants::STRATEGY] == BEIXFConstants::SHORTCODE)) { 23 $this->ixfAddBody1BlockShortcode(); 24 } 25 21 26 if (isset($this->controller->ixf_data) 22 27 && $this->checkBodyStr($this->controller->ixf_data)){ … … 26 31 } else if($options[BEIXFConstants::STRATEGY] == BEIXFConstants::FIRST_ELEMENT_IN_FOOTER) { 27 32 $this->ixfAddBody1BlockFirstElementInFooter(); 28 } else if($options[BEIXFConstants::STRATEGY] == BEIXFConstants::SHORTCODE){29 $this->ixfAddBody1BlockShortcode();30 33 } else { 31 34 $this->ixfAddBody1Block(); -
brightedge-autopilot/trunk/src/be_ixf_client.php
r2378318 r2443985 136 136 public static $PRODUCT_NAME = "be_ixf"; 137 137 public static $CLIENT_NAME = "php_sdk"; 138 public static $CLIENT_VERSION = "1.5. 2";138 public static $CLIENT_VERSION = "1.5.3"; 139 139 140 140 private static $API_VERSION = "1.0.0"; … … 184 184 */ 185 185 public function __construct($params = array()) { 186 if (!isset($_SERVER['HTTP_HOST'])) { 187 exit; 188 } 186 189 // config array, defaults are defined here. 187 190 $this->config = array( … … 625 628 "proxy_port" => $this->config[self::$PROXY_PORT_CONFIG], 626 629 "proxy_usr" => isset($this->config[self::$PROXY_LOGIN_CONFIG]) ? $this->config[self::$PROXY_LOGIN_CONFIG] : "", 627 "proxy_pwd" => isset($this->config[self::$PROXY_PASSWORD_CONFIG]) ? $this->config[self::$PROXY_PASSWORD_CONFIG] : "",628 630 "socket_timeout" => $this->config[self::$SOCKET_TIMEOUT_CONFIG], 629 631 "socket_timeout_crawler" => $this->config[self::$CRAWLER_SOCKET_TIMEOUT_CONFIG], -
brightedge-autopilot/trunk/src/constants.php
r2378318 r2443985 5 5 class BEIXFConstants{ 6 6 // wordpress plugin version 7 const WP_VERSION = '<meta name="be:wp" content="1.1. 6">';7 const WP_VERSION = '<meta name="be:wp" content="1.1.7">'; 8 8 // account id 9 9 const ACCOUNT_ID = 'account_id';
Note: See TracChangeset
for help on using the changeset viewer.