Files
Template-Joomla/samples/manifest/module_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

42 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<extension type="module" client="site" method="upgrade">
<name>Moko Dynamic Content Showcase</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>A high-performance asynchronous frontend display module designed to cleanly inject dynamic layout matrices into module zones.</description>
<namespace path="src">MokoConsulting\Module\MokoModule</namespace>
<files>
<folder module="mod_mokomodule">services</folder>
<folder>src</folder>
<folder>tmpl</folder>
<filename>mod_mokomodule.xml</filename>
</files>
<languages>
<language tag="en-GB">language/en-GB/mod_mokomodule.ini</language>
<language tag="en-GB">language/en-GB/mod_mokomodule.sys.ini</language>
<language tag="en-US">language/en-US/mod_mokomodule.ini</language>
<language tag="en-US">language/en-US/mod_mokomodule.sys.ini</language>
</languages>
<config>
<fields name="params">
<fieldset name="basic">
<field name="layout" type="modulelayout" label="Select Layout File" />
</fieldset>
</fields>
</config>
<updateservers>
<server type="extension" priority="1" name="Moko Consulting Updates" dlid="id">
https://update.mokoconsulting.tech/mod_mokomodule.xml
</server>
</updateservers>
</extension>