342f6fa3b8
#12 LinkedIn: plugin config form (OAuth client ID/secret, redirect URI) #13 Mastodon: plugin config (default instance, visibility, hashtags) #14 Bluesky: plugin config (default PDS URL, auto link cards) #15 Mailchimp: plugin config (sender name/email, auto-send toggle) #17 Template management: full CRUD with TemplatesController, TemplateController, TemplatesModel, TemplateModel, TemplateTable. List view with service type badges and body preview. Edit view with placeholder reference panel showing all 8 placeholders. Filter form with search, published, service_type filters. Added Templates submenu item and dashboard quick link. #18 Logs: added filter form with level and search filters. #16 WebServices: implementation already in place from scaffold, routes registered for posts and services CRUD. Admin component now has 5 submenu items: Dashboard, Post Queue, Services, Templates, Activity Logs. Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
527 B
PHP
21 lines
527 B
PHP
<?php
|
|
|
|
/**
|
|
* @package MokoJoomCross
|
|
* @subpackage com_mokojoomcross
|
|
* @author Moko Consulting <hello@mokoconsulting.tech>
|
|
* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved.
|
|
* @license GNU General Public License version 3 or later; see LICENSE
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Joomla\Component\MokoJoomCross\Administrator\Controller;
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\MVC\Controller\FormController;
|
|
|
|
class TemplateController extends FormController
|
|
{
|
|
}
|