- Posts: 5
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<!-- Extra menus from plugins --> <?php App()->getController()->renderPartial( '/admin/survey/surveybar_plugins', [ 'beforeSurveyBarRender' => $beforeSurveyBarRender ] ); ?>
No way except javascript hacking.But I was hoping that you could point to a plugin which is adding a menu button at the top-bar menu of the Survey page. Or point me to documentation how I can do this...
call_user_func() expects parameter 1 to be a valid callback, class 'exportCompleteAnswers' does not have a method 'beforeActivate'C:\Program_Files_Portable\xampp\htdocs\limesurvey\application\libraries\PluginManager\PluginManager.php(185)173 */ 174 public function dispatchEvent(PluginEvent $event, $target = array()) 175 { 176 $eventName = $event->getEventName(); 177 if (is_string($target)) { 178 $target = array($target); 179 } 180 if (isset($this->subscriptions[$eventName])) { 181 foreach ($this->subscriptions[$eventName] as $subscription) { 182 if (!$event->isStopped() 183 && (empty($target) || in_array(get_class($subscription[0]), $target))) { 184 $subscription[0]->setEvent($event); 185 [color=#e74c3c][b]call_user_func($subscription);[/b][/color] 186 } 187 } 188 } 189 190 return $event; 191 } 192 193 /** 194 * Scans the plugin directory for plugins. 195 * This function is not efficient so should only be used in the admin interface 196 * that specifically deals with enabling / disabling plugins. 197 */