Changeset 753877
- Timestamp:
- 08/09/2013 02:30:50 AM (13 years ago)
- Location:
- siteapps/trunk
- Files:
-
- 5 edited
-
classes/PluginConfig.php (modified) (1 diff)
-
classes/SiteAppsAPI.php (modified) (1 diff)
-
classes/SiteAppsCallbacks.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
siteapps.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
siteapps/trunk/classes/PluginConfig.php
r753723 r753877 19 19 'user_email' => '', 20 20 'site_key' => '', 21 'flags' => '', 21 22 'private_key' => '78ce388633a64f2213ff7f19e9a8ece4', 22 23 'public_key' => '51f22e8dc2da04f49ef1f9a992858be2', -
siteapps/trunk/classes/SiteAppsAPI.php
r753723 r753877 71 71 $user = $this->createUser($name, $email, $privateKey, $publicKey); 72 72 $site = $this->createSite($email, $url, $user['user_key'], $privateKey, $publicKey); 73 $this->addFlags(array('platform' => array('wordpress', 'plugin-wordpress')), $site['site_id'], $email, $user['user_key'], $privateKey, $publicKey); 74 return array_merge($user, $site); 73 $flags = array('platform' => array('wordpress', 'plugin-wordpress', 'signup-wordpress')); 74 $this->addFlags($flags, $site['site_id'], $email, $user['user_key'], $privateKey, $publicKey); 75 return array_merge($user, $site, $flags); 75 76 } catch (Exception $e) { 76 77 $this->messages->addCustomMessage($e->getMessage(), true); -
siteapps/trunk/classes/SiteAppsCallbacks.php
r752790 r753877 101 101 $options['user_key'] = $account['user_key']; 102 102 $options['site_key'] = $account['site_key']; 103 $options['flags'] = json_encode($account['platform']); 103 104 104 105 $options['tag'] = $pluginConfig->getTag($options['id'], $options['type']); -
siteapps/trunk/readme.txt
r750368 r753877 4 4 Requires at least: 2.8 5 5 Tested up to: 3.5.1 6 Stable tag: 2.46 Stable tag: 3.0 7 7 8 8 Deliver a new experience to your visitors using SiteApps. You can install applications, use segmentation, and analyze/optimize your site. … … 101 101 == ChangeLog == 102 102 103 * 2013/08/02 - New configuration and new shortcuts 104 * 2013/08/02 - Signup 103 105 * 2013/08/02 - SiteApps Left Menu. 104 106 * 2013/08/01 - Fix SSL problems. … … 116 118 117 119 == Upgrade Notice == 120 121 = 3.0 = 122 123 * New SiteApps links 124 * New layout 125 * New configuration 126 * More services API 127 * Signup 118 128 119 129 = 2.4 = -
siteapps/trunk/siteapps.php
r753806 r753877 5 5 Plugin URI: http://siteapps.com/?utm_source=wordpress&utm_medium=plugin&utm_campaign=plugin_page 6 6 Description: SiteApps is the optimization command center for the SMB website. SiteApps is designed for you - the business owner - to update, enhance and optimize the most valuable asset of your digital presence. This plugin automatically installs SiteApps on your WordPress site. 7 Author: Leandro Lages 8 Version: 2.47 Author: Leandro Lages, Rafael Mauro, Marcelio Leal 8 Version: 3.0 9 9 Requires at least: 2.8 10 10 Author URI: http://siteapps.com/ … … 12 12 */ 13 13 14 /* Copyright 201 0Leandro Lages (email : leandro@siteapps.com)14 /* Copyright 2013 Leandro Lages (email : leandro@siteapps.com) 15 15 16 16 This program is free software; you can redistribute it and/or modify … … 33 33 define('SITEAPPS_IMAGES_DIR', dirname(__FILE__) . "/images/"); 34 34 define('SITEAPPS_PLUGIN_NAME', 'siteapps'); 35 define('SITEAPPS_VERSION', ' 2.4');35 define('SITEAPPS_VERSION', '3.0'); 36 36 37 37 require_once(SITEAPPS_CLASS_DIR . 'SiteAppsPlugin.php');
Note: See TracChangeset
for help on using the changeset viewer.