Skip to content
Snippets Groups Projects
  1. Jun 14, 2015
  2. Jun 13, 2015
  3. Jun 11, 2015
  4. Jun 07, 2015
  5. Jun 04, 2015
  6. May 31, 2015
  7. May 29, 2015
  8. May 28, 2015
  9. May 27, 2015
    • Ikuo Obataya's avatar
      translation update · edc61c3a
      Ikuo Obataya authored
      edc61c3a
    • Andreas Gohr's avatar
      Merge pull request #1150 from gturri/autosubmit_plugin3 · 35462eda
      Andreas Gohr authored
      Plugins can send usage data
      35462eda
    • Guillaume Turri's avatar
      Plugins can send usage data · 5875e534
      Guillaume Turri authored
      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');
          }
      5875e534
  10. May 25, 2015
  11. May 22, 2015
  12. May 20, 2015
  13. May 19, 2015
  14. May 18, 2015
  15. May 17, 2015
  16. May 16, 2015
Loading