Plugin Directory

Changeset 383976


Ignore:
Timestamp:
05/12/2011 09:27:32 AM (15 years ago)
Author:
Rontu
Message:
 
Location:
piwikcounter
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • piwikcounter/tags/0.1/class.PiwikCounterAdministration.php

    r383962 r383976  
    44 * @pakage PiwikCounter
    55 */
    6 
    7 /*
    8 Plugin Name: PiwikCounter
    9 Plugin URI: http://piwikcounter.rontu.de
    10 Description:
    11 Version: 0.1
    12 Author: Tobias Etzold
    13 Email: tobias.etzold@googlemail.com
    14 Author URI: http://blog.rontu.de
    15 License: GPLv2 or later
    16 */
    176
    187class PiwikCounterAdministration {
  • piwikcounter/tags/0.1/class.PiwikCounterWidget.php

    r383962 r383976  
    44 * @pakage PiwikCounter
    55 */
    6 
    7 /*
    8 Plugin Name: PiwikCounter
    9 Plugin URI: http://piwikcounter.rontu.de
    10 Description:
    11 Version: 0.1
    12 Author: Tobias Etzold
    13 Email: tobias.etzold@googlemail.com
    14 Author URI: http://blog.rontu.de
    15 License: GPLv2 or later
    16 */
    176
    187class PiwikCounterWidget extends WP_Widget {
  • piwikcounter/tags/0.1/class.Visitors.php

    r383962 r383976  
    55 */
    66
    7 /*
    8 Plugin Name: PiwikCounter
    9 Plugin URI: http://piwikcounter.rontu.de
    10 Description:
    11 Version: 0.1
    12 Author: Tobias Etzold
    13 Email: tobias.etzold@googlemail.com
    14 Author URI: http://blog.rontu.de
    15 License: GPLv2 or later
    16 */
    17 
    187class Visitors {
    198
    20     private function getVisitors($start_date, $piwik_url, $site_id, $api_key, $unique = false) {
     9    private function getVisitors($start_date, $piwik_url, $site_id, $api_key, $unique = 0) {
    2110   
    2211        if ($piwik_url != null) {
    2312       
    24             if ( $unique == false) {
     13            if ( $unique == 0) {
    2514                $method = 'VisitsSummary.getVisits';
    2615            }
  • piwikcounter/trunk/class.PiwikCounterAdministration.php

    r383952 r383976  
    44 * @pakage PiwikCounter
    55 */
    6 
    7 /*
    8 Plugin Name: PiwikCounter
    9 Plugin URI: http://piwikcounter.rontu.de
    10 Description:
    11 Version: 0.1
    12 Author: Tobias Etzold
    13 Email: tobias.etzold@googlemail.com
    14 Author URI: http://blog.rontu.de
    15 License: GPLv2 or later
    16 */
    176
    187class PiwikCounterAdministration {
  • piwikcounter/trunk/class.PiwikCounterWidget.php

    r383952 r383976  
    44 * @pakage PiwikCounter
    55 */
    6 
    7 /*
    8 Plugin Name: PiwikCounter
    9 Plugin URI: http://piwikcounter.rontu.de
    10 Description:
    11 Version: 0.1
    12 Author: Tobias Etzold
    13 Email: tobias.etzold@googlemail.com
    14 Author URI: http://blog.rontu.de
    15 License: GPLv2 or later
    16 */
    176
    187class PiwikCounterWidget extends WP_Widget {
  • piwikcounter/trunk/class.Visitors.php

    r383952 r383976  
    55 */
    66
    7 /*
    8 Plugin Name: PiwikCounter
    9 Plugin URI: http://piwikcounter.rontu.de
    10 Description:
    11 Version: 0.1
    12 Author: Tobias Etzold
    13 Email: tobias.etzold@googlemail.com
    14 Author URI: http://blog.rontu.de
    15 License: GPLv2 or later
    16 */
    17 
    187class Visitors {
    198
    20     private function getVisitors($start_date, $piwik_url, $site_id, $api_key, $unique = false) {
     9    private function getVisitors($start_date, $piwik_url, $site_id, $api_key, $unique = 0) {
    2110   
    2211        if ($piwik_url != null) {
    2312       
    24             if ( $unique == false) {
     13            if ( $unique == 0) {
    2514                $method = 'VisitsSummary.getVisits';
    2615            }
Note: See TracChangeset for help on using the changeset viewer.