Dashboard management of blocks 5.7
PermalinkI am about to start making an addon for Concrete 5.7 and am a bit lost as to how to start. It's basically a collection of testimonials managed in the dashboard, similar to https://www.concrete5.org/marketplace/addons/studio-testimonials-pro...
I could just buy the addon, but I need to learn how to do it because I have to create similar admin panels for special offers and other items, so I'd rather learn how to do it.
I can create my own blocks, but I don't know how to create a management section from the dashboard. Can anyone give me any pointers?
Thanks,
Erik
I added a controller to Application/controllers/single_page/dashboard/testimonials.php
Then added a single page at Application/single_pages/dashboard/testimonials/view.php
controller contains:
<?php namespace Application\Controller\SinglePage\Dashboard; use \Concrete\Core\Page\Controller\DashboardPageController; class Testimonials extends DashboardPageController { public function view() { } }
and view.php contains:
But nothing showing up on the dashboard. What am I missing?
i.e. I added this code to the view method of the Testimonials controller:
$this->set('message', 'My regular message');
But I still get a blank screen.
- Stef
https://www.concrete5.org/documentation/developers/5.7/working-with-...