I'm trying to work with this kit but I really need full CRUD working in both backend and frontend. Can't get anywhere with this. Tried to get the event model from the sample demo working but I just get exceptions in the code base.
My sample ShortcodeComponent:
namespace atkdemo\shortcodes;
use atk4\ui\View;
use atkdemo\models\Event;
use atkwp\components\ShortcodeComponent;
class EventShortcode extends ShortcodeComponent
{
public function init()
{
parent::init();
I'm trying to work with this kit but I really need full CRUD working in both backend and frontend. Can't get anywhere with this. Tried to get the event model from the sample demo working but I just get exceptions in the code base.
My sample ShortcodeComponent:
namespace atkdemo\shortcodes;
use atk4\ui\View; use atkdemo\models\Event;
use atkwp\components\ShortcodeComponent;
class EventShortcode extends ShortcodeComponent { public function init() { parent::init();
}