summaryrefslogtreecommitdiff
path: root/lib/plugins/popularity/helper.php
Commit message (Collapse)AuthorAge
* Merge pull request #1150 from gturri/autosubmit_plugin3Andreas Gohr2015-05-27
|\ | | | | Plugins can send usage data
| * Plugins can send usage dataGuillaume Turri2015-05-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They just need to register to the PLUGIN_USAGE_DATA event, and then to add either a simple string, or an array of key / value. For example: function register(Doku_Event_Handler $controller) { $controller->register_hook('PLUGIN_USAGE_DATA', 'AFTER', $this, 'usage_data'); } function usage_data(&$event){ $event->data['my_plugin_name'] = 'my usage data'; //or: $event->data['my_plugin_name'] = array ('k1' => 'v1', 'k2' => 'v2'); }
* | Changes for PHP 7 CompatibilityChristopher Smith2015-05-15
|/ | | | | | | - replace PHP4 style class constructor function names (based on class name) with php 5 __construct() Also remove some '&' reference operators used with objects And add some object type hints
* Remove error supression for file_exists()Andreas Gohr2015-01-07
| | | | | | | In an older version of PHP a file_exists() call would issue a warning when the file did not exist. This was fixed in later PHP releases. Since we require PHP 5.3 now, there's no need to supress any error here anymore. This might even give a minor performance boost.
* more PHPDocs, unused var, small bit code reformattingGerrit Uitslag2014-10-01
|
* add PHPDocs to popularity plugin helperGerrit Uitslag2013-10-14
|
* get version popularity plugin direct from plugin infoGerrit Uitslag2013-10-14
|
* Fixed gathering of version of popularity pluginGerrit Uitslag2013-09-19
|
* Fix popularity data submission in the backend FS#2808Michael Hamann2013-07-29
| | | | | | The POST data contained the raw data instead of an array with the data that should be submitted like in the requests from the browser. The server backend has been fixed to be able to process both versions.
* some coding style improvementsDominik Eckelmann2012-11-29
| | | | | | - removed some dead/unused code - fixed phpdoc - added typing on methods
* fixed warning in popularity plugin FS#2628Andreas Gohr2012-10-07
|
* popularity plugin: send info on autosendAndreas Gohr2011-08-18
| | | | | Added information about the autosubmitting feature of the popularity plugin itself.
* fixed error in popularity/helper.php (a quoted array instruction error'd ...)Petsagourakis George2011-02-12
|
* Popularity plugin displays the last time the data was sentGuillaume Turri2010-12-18
|
* added missing files for popularity pluginAndreas Gohr2010-12-10