Hello, what am I doing wrong? I got the page to display but the static html content is not showing…
My controller…
<?php
namespace Kanboard\Plugin\KanboardPluginsUX\Controller;
use Kanboard\Controller\BaseController;
/**
* Class TechnicalPluginsUX
*
* @author aljawaid
*
*/
class KanboardPluginsUXController extends \Kanboard\Controller\PluginController
{
/**
* Display the Problem Plugins Page
*
* @access public
*/
public function show()
{
$this->response->html($this->helper->layout->plugin('kanboardPluginsUX:plugin/problem-plugins', array(
'title' => t('Plugins').' ⥂ '.t('Plugin Problems'),
)));
}
}