<?xml version="1.0" encoding="utf-8"?>
<extension type="module" version="5.0" method="upgrade">
    <name>Casual Work Dashboard</name>
    <author>Your Name</author>
    <creationDate>2023-10-01</creationDate>
    <copyright>Your Copyright</copyright>
    <license>GNU General Public License version 2 or later</license>
    <authorEmail>your.email@example.com</authorEmail>
    <authorUrl>http://www.example.com</authorUrl>
    <version>1.0.1</version>
    <description>Displays a dashboard with metrics from RSForms submissions, filtered by company name.</description>

    <files>
        <filename module="mod_casual_work_dashboard">mod_casual_work_dashboard.php</filename>
    </files>

    <config>
        <fields name="params">
            <fieldset name="basic">
                <field
                    name="form_id"
                    type="text"
                    label="Form ID"
                    description="Enter the RSForm Form ID to use for this module."
                    default=""
                    required="true"
                />
                <field
                    name="company_name"
                    type="text"
                    label="Company Name"
                    description="Enter the company name to filter submissions (Company_Assigned field)."
                    default=""
                />
            </fieldset>
        </fields>
    </config>
</extension>