Changeset 1920581
- Timestamp:
- 08/06/2018 07:40:00 PM (8 years ago)
- Location:
- coschedule-by-todaymade/tags/3.2.0
- Files:
-
- 3 edited
-
frame.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
tm-scheduler.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coschedule-by-todaymade/tags/3.2.0/frame.php
r1920580 r1920581 2 2 if ( get_option( 'tm_coschedule_token' ) ) { 3 3 if ( current_user_can( 'edit_posts' ) ) { 4 $url = " @@APP_URL/#/authenticate?calendarID=" . urlencode( get_option( 'tm_coschedule_calendar_id' ) );4 $url = "https://app.coschedule.com/#/authenticate?calendarID=" . urlencode( get_option( 'tm_coschedule_calendar_id' ) ); 5 5 $url .= "&wordpressSiteID=" . urlencode( get_option( 'tm_coschedule_wordpress_site_id' ) ); 6 6 $url .= "&redirect=" . $redirect . "&build=" . $this->build; -
coschedule-by-todaymade/tags/3.2.0/readme.txt
r1920580 r1920581 5 5 Requires at least: 3.5 6 6 Tested up to: 4.9.6 7 Stable tag: @@plugin_version7 Stable tag: 3.2.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
coschedule-by-todaymade/tags/3.2.0/tm-scheduler.php
r1920580 r1920581 3 3 Plugin Name: CoSchedule 4 4 Description: Plan, organize, and execute every content marketing project in one place with CoSchedule, an all-in-one content marketing editorial calendar solution. 5 Version: @@plugin_version5 Version: 3.2.0 6 6 Author: CoSchedule 7 7 Author URI: http://coschedule.com/ … … 20 20 /** @noinspection PhpUndefinedClassInspection */ 21 21 class TM_CoSchedule { 22 private $api = " @@API_URL";23 private $webhooks_url = " @@WEBHOOKS_URL";24 private $app = " @@APP_URL";25 private $assets = " @@ASSETS_URL";26 private $version = " @@plugin_version";22 private $api = "https://api.coschedule.com"; 23 private $webhooks_url = "https://webhooks.coschedule.com"; 24 private $app = "https://app.coschedule.com"; 25 private $assets = "https://assets.coschedule.com"; 26 private $version = "3.2.0"; 27 27 private $build; 28 28 private $connected = false; … … 48 48 49 49 // Load variables 50 $this->build = intval( " @@plugin_build" );50 $this->build = intval( "80" ); 51 51 $this->token = get_option( 'tm_coschedule_token' ); 52 52 $this->calendar_id = get_option( 'tm_coschedule_calendar_id' );
Note: See TracChangeset
for help on using the changeset viewer.