<?php

class TestPlugin2 extends ls\pluginmanager\PluginBase {

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

  protected $settings = array();

  function handleAdminRequest( $surveyId ) {

    return '<strong>Some content wrapped inside the Limesurvey admin dashboard HTML wrapper. Survey ID is '. ( (int) $surveyId ) .'.</strong>';
  }
}

