Files
Template-Joomla/samples/manifest/plugin_sample.xml
T
jmiller d46c431189 refactor: restructure template into samples/ + source/ layout
Replace per-type types/<type>/ scaffolds with a samples/ reference
directory (manifest XML + install script templates for all six
extension types) and a single source/ build directory that CI scans.

- Add samples/manifest/*.xml for component, template, module, plugin,
  package, and library
- Add samples/script/*.php install/update script templates
- Add source/ as the canonical build root (CI scans source/src/htdocs)
- Remove types/ per-type scaffolds
- Rewrite root README for the new structure and expanded CI suite
- Anchor Python MANIFEST ignore rule to root (/MANIFEST) so it no
  longer swallows samples/manifest/ on case-insensitive filesystems
- Expand ci-joomla.yml: SQL, language-key, PHPCS, security, updates.xml,
  asset, MVC naming, router, ACL, webservices, ZIP dry-run, JS/CSS checks

Authored-by: Moko Consulting
2026-07-04 01:23:54 -05:00

40 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<extension type="plugin" group="system" method="upgrade">
<name>System - Moko Automation Plugin</name>
<author>Moko Consulting</author>
<creationDate>July 2026</creationDate>
<copyright>Copyright (C) 2026 Moko Consulting. All rights reserved.</copyright>
<license>GNU General Public License version 3 or later; see LICENSE</license>
<authorEmail>hello@mokoconsulting.tech</authorEmail>
<authorUrl>https://mokoconsulting.tech</authorUrl>
<version>1.0.0</version>
<description>Advanced system-level interceptor framework developed by Moko Consulting for request optimizations in Joomla 6.</description>
<namespace path="src">MokoConsulting\Plugin\System\MokoPlugin</namespace>
<files>
<folder plugin="mokoplugin">services</folder>
<folder>src</folder>
</files>
<languages>
<language tag="en-GB">language/en-GB/plg_system_mokoplugin.ini</language>
<language tag="en-GB">language/en-GB/plg_system_mokoplugin.sys.ini</language>
<language tag="en-US">language/en-US/plg_system_mokoplugin.ini</language>
<language tag="en-US">language/en-US/plg_system_mokoplugin.sys.ini</language>
</languages>
<config>
<fields name="params">
<fieldset name="basic">
<field name="example_param" type="text" label="API Endpoint Parameter" />
</fieldset>
</fields>
</config>
<updateservers>
<server type="extension" priority="1" name="Moko Consulting Updates" dlid="id">
https://update.mokoconsulting.tech/plg_system_mokoplugin.xml
</server>
</updateservers>
</extension>