Changeset 383976
- Timestamp:
- 05/12/2011 09:27:32 AM (15 years ago)
- Location:
- piwikcounter
- Files:
-
- 6 edited
-
tags/0.1/class.PiwikCounterAdministration.php (modified) (1 diff)
-
tags/0.1/class.PiwikCounterWidget.php (modified) (1 diff)
-
tags/0.1/class.Visitors.php (modified) (1 diff)
-
trunk/class.PiwikCounterAdministration.php (modified) (1 diff)
-
trunk/class.PiwikCounterWidget.php (modified) (1 diff)
-
trunk/class.Visitors.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
piwikcounter/tags/0.1/class.PiwikCounterAdministration.php
r383962 r383976 4 4 * @pakage PiwikCounter 5 5 */ 6 7 /*8 Plugin Name: PiwikCounter9 Plugin URI: http://piwikcounter.rontu.de10 Description:11 Version: 0.112 Author: Tobias Etzold13 Email: tobias.etzold@googlemail.com14 Author URI: http://blog.rontu.de15 License: GPLv2 or later16 */17 6 18 7 class PiwikCounterAdministration { -
piwikcounter/tags/0.1/class.PiwikCounterWidget.php
r383962 r383976 4 4 * @pakage PiwikCounter 5 5 */ 6 7 /*8 Plugin Name: PiwikCounter9 Plugin URI: http://piwikcounter.rontu.de10 Description:11 Version: 0.112 Author: Tobias Etzold13 Email: tobias.etzold@googlemail.com14 Author URI: http://blog.rontu.de15 License: GPLv2 or later16 */17 6 18 7 class PiwikCounterWidget extends WP_Widget { -
piwikcounter/tags/0.1/class.Visitors.php
r383962 r383976 5 5 */ 6 6 7 /*8 Plugin Name: PiwikCounter9 Plugin URI: http://piwikcounter.rontu.de10 Description:11 Version: 0.112 Author: Tobias Etzold13 Email: tobias.etzold@googlemail.com14 Author URI: http://blog.rontu.de15 License: GPLv2 or later16 */17 18 7 class Visitors { 19 8 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) { 21 10 22 11 if ($piwik_url != null) { 23 12 24 if ( $unique == false) {13 if ( $unique == 0) { 25 14 $method = 'VisitsSummary.getVisits'; 26 15 } -
piwikcounter/trunk/class.PiwikCounterAdministration.php
r383952 r383976 4 4 * @pakage PiwikCounter 5 5 */ 6 7 /*8 Plugin Name: PiwikCounter9 Plugin URI: http://piwikcounter.rontu.de10 Description:11 Version: 0.112 Author: Tobias Etzold13 Email: tobias.etzold@googlemail.com14 Author URI: http://blog.rontu.de15 License: GPLv2 or later16 */17 6 18 7 class PiwikCounterAdministration { -
piwikcounter/trunk/class.PiwikCounterWidget.php
r383952 r383976 4 4 * @pakage PiwikCounter 5 5 */ 6 7 /*8 Plugin Name: PiwikCounter9 Plugin URI: http://piwikcounter.rontu.de10 Description:11 Version: 0.112 Author: Tobias Etzold13 Email: tobias.etzold@googlemail.com14 Author URI: http://blog.rontu.de15 License: GPLv2 or later16 */17 6 18 7 class PiwikCounterWidget extends WP_Widget { -
piwikcounter/trunk/class.Visitors.php
r383952 r383976 5 5 */ 6 6 7 /*8 Plugin Name: PiwikCounter9 Plugin URI: http://piwikcounter.rontu.de10 Description:11 Version: 0.112 Author: Tobias Etzold13 Email: tobias.etzold@googlemail.com14 Author URI: http://blog.rontu.de15 License: GPLv2 or later16 */17 18 7 class Visitors { 19 8 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) { 21 10 22 11 if ($piwik_url != null) { 23 12 24 if ( $unique == false) {13 if ( $unique == 0) { 25 14 $method = 'VisitsSummary.getVisits'; 26 15 }
Note: See TracChangeset
for help on using the changeset viewer.