- Posts: 21
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
"AdminController cannot find the requested view "plugin_views_folder3.views.testPage"
public funtion pageTest() { return $this->renderPartial('testPage', array() , true); }
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
<?php class ShowAnswers extends PluginBase { static protected $description = 'Show answers'; static protected $name = 'ShowAnswers'; public function init() { $this->subscribe('newDirectRequest'); } public function newDirectRequest() { $this->api->createUrl('plugins/direct', array('plugin' => 'ShowAnswers', 'function' => 'action')); } public function action() { echo "We've started!"; } }
Please Log in to join the conversation.
limesurvey/index.php/plugins/direct/plugin/ShowAnswers
Please Log in to join the conversation.