<?php

class TestPlugin extends ls\pluginmanager\PluginBase {

  protected $storage = 'DbStorage';
  static protected $name = 'TestPlugin';
  static protected $description = 'test';

  protected $settings = array();

  function handleAdminRequest( $surveyId ) {

    echo 'test';
  }
}
