Plugin Directory

Changeset 753877


Ignore:
Timestamp:
08/09/2013 02:30:50 AM (13 years ago)
Author:
marcelioleal
Message:

add tag

Location:
siteapps/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • siteapps/trunk/classes/PluginConfig.php

    r753723 r753877  
    1919            'user_email'                => '',
    2020            'site_key'                  => '',
     21            'flags'                     => '',
    2122            'private_key'               => '78ce388633a64f2213ff7f19e9a8ece4',
    2223            'public_key'                => '51f22e8dc2da04f49ef1f9a992858be2',
  • siteapps/trunk/classes/SiteAppsAPI.php

    r753723 r753877  
    7171            $user = $this->createUser($name, $email, $privateKey, $publicKey);
    7272            $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);
    7576        } catch (Exception $e) {
    7677            $this->messages->addCustomMessage($e->getMessage(), true);
  • siteapps/trunk/classes/SiteAppsCallbacks.php

    r752790 r753877  
    101101            $options['user_key']            = $account['user_key'];
    102102            $options['site_key']            = $account['site_key'];
     103            $options['flags']               = json_encode($account['platform']);
    103104           
    104105            $options['tag'] = $pluginConfig->getTag($options['id'], $options['type']);
  • siteapps/trunk/readme.txt

    r750368 r753877  
    44Requires at least: 2.8
    55Tested up to: 3.5.1
    6 Stable tag: 2.4
     6Stable tag: 3.0
    77
    88Deliver a new experience to your visitors using SiteApps. You can install applications, use segmentation, and analyze/optimize your site.
     
    101101== ChangeLog ==
    102102
     103* 2013/08/02 - New configuration and new shortcuts
     104* 2013/08/02 - Signup
    103105* 2013/08/02 - SiteApps Left Menu.
    104106* 2013/08/01 - Fix SSL problems.
     
    116118 
    117119== Upgrade Notice ==
     120
     121= 3.0 =
     122
     123* New SiteApps links
     124* New layout
     125* New configuration
     126* More services API
     127* Signup
    118128
    119129= 2.4 =
  • siteapps/trunk/siteapps.php

    r753806 r753877  
    55Plugin URI: http://siteapps.com/?utm_source=wordpress&utm_medium=plugin&utm_campaign=plugin_page
    66Description: 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.4
     7Author: Leandro Lages, Rafael Mauro, Marcelio Leal
     8Version: 3.0
    99Requires at least: 2.8
    1010Author URI: http://siteapps.com/
     
    1212*/
    1313
    14 /*  Copyright 2010  Leandro Lages   (email : leandro@siteapps.com)
     14/*  Copyright 2013  Leandro Lages   (email : leandro@siteapps.com)
    1515
    1616    This program is free software; you can redistribute it and/or modify
     
    3333define('SITEAPPS_IMAGES_DIR', dirname(__FILE__) . "/images/");
    3434define('SITEAPPS_PLUGIN_NAME', 'siteapps');
    35 define('SITEAPPS_VERSION', '2.4');
     35define('SITEAPPS_VERSION', '3.0');
    3636
    3737require_once(SITEAPPS_CLASS_DIR . 'SiteAppsPlugin.php');
Note: See TracChangeset for help on using the changeset viewer.