This repository has been archived by the owner on Nov 5, 2022. It is now read-only.
forked from joomla-extensions/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
151 changed files
with
12,018 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/astrid/git/joomla-development/boilerplate/dist/foos-1.0.0 |
35 changes: 35 additions & 0 deletions
35
dist/foos-1.0.0/administrator/components/com_foos/access.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<access component="com_foos"> | ||
<section name="component"> | ||
<action name="core.admin" title="JACTION_ADMIN" /> | ||
<action name="core.options" title="JACTION_OPTIONS" /> | ||
<action name="core.manage" title="JACTION_MANAGE" /> | ||
<action name="core.create" title="JACTION_CREATE" /> | ||
<action name="core.delete" title="JACTION_DELETE" /> | ||
<action name="core.edit" title="JACTION_EDIT" /> | ||
<action name="core.edit.state" title="JACTION_EDITSTATE" /> | ||
<action name="core.edit.own" title="JACTION_EDITOWN" /> | ||
<action name="core.edit.value" title="JACTION_EDITVALUE" /> | ||
</section> | ||
<section name="category"> | ||
<action name="core.create" title="JACTION_CREATE" /> | ||
<action name="core.delete" title="JACTION_DELETE" /> | ||
<action name="core.edit" title="JACTION_EDIT" /> | ||
<action name="core.edit.state" title="JACTION_EDITSTATE" /> | ||
<action name="core.edit.own" title="JACTION_EDITOWN" /> | ||
</section> | ||
<section name="fieldgroup"> | ||
<action name="core.create" title="JACTION_CREATE" /> | ||
<action name="core.delete" title="JACTION_DELETE" /> | ||
<action name="core.edit" title="JACTION_EDIT" /> | ||
<action name="core.edit.state" title="JACTION_EDITSTATE" /> | ||
<action name="core.edit.own" title="JACTION_EDITOWN" /> | ||
<action name="core.edit.value" title="JACTION_EDITVALUE" /> | ||
</section> | ||
<section name="field"> | ||
<action name="core.delete" title="JACTION_DELETE" /> | ||
<action name="core.edit" title="JACTION_EDIT" /> | ||
<action name="core.edit.state" title="JACTION_EDITSTATE" /> | ||
<action name="core.edit.value" title="JACTION_EDITVALUE" /> | ||
</section> | ||
</access> |
55 changes: 55 additions & 0 deletions
55
dist/foos-1.0.0/administrator/components/com_foos/config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<config> | ||
<fieldset | ||
name="foo" | ||
label="COM_FOOS_FIELD_CONFIG_INDIVIDUAL_FOO_DISPLAY" | ||
description="COM_FOOS_FIELD_CONFIG_INDIVIDUAL_FOO_DESC" | ||
> | ||
<field | ||
name="show_foo_name_label" | ||
type="list" | ||
label="COM_FOOS_FIELD_FOO_SHOW_CATEGORY_LABEL" | ||
default="1" | ||
> | ||
<option value="0">JNO</option> | ||
<option value="1">JYES</option> | ||
</field> | ||
|
||
<field | ||
name="custom_fields_enable" | ||
type="radio" | ||
class="switcher" | ||
label="JGLOBAL_CUSTOM_FIELDS_ENABLE_LABEL" | ||
default="1" | ||
> | ||
<option value="0">JNO</option> | ||
<option value="1">JYES</option> | ||
</field> | ||
|
||
<field | ||
name="show_name" | ||
type="radio" | ||
label="COM_FOOS_FIELD_PARAMS_NAME_LABEL" | ||
default="1" | ||
class="switcher" | ||
> | ||
<option value="0">JHIDE</option> | ||
<option value="1">JSHOW</option> | ||
</field> | ||
</fieldset> | ||
<fieldset | ||
name="permissions" | ||
label="JCONFIG_PERMISSIONS_LABEL" | ||
description="JCONFIG_PERMISSIONS_DESC" | ||
> | ||
<field | ||
name="rules" | ||
type="rules" | ||
label="JCONFIG_PERMISSIONS_LABEL" | ||
validate="rules" | ||
filter="rules" | ||
component="com_foos" | ||
section="component" | ||
/> | ||
</fieldset> | ||
</config> |
64 changes: 64 additions & 0 deletions
64
dist/foos-1.0.0/administrator/components/com_foos/foos.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<extension type="component" method="upgrade"> | ||
<name>COM_FOOS</name> | ||
<creationDate>[DATE]</creationDate> | ||
<author>[AUTHOR]</author> | ||
<authorEmail>[AUTHOR_EMAIL]</authorEmail> | ||
<authorUrl>[AUTHOR_URL]</authorUrl> | ||
<copyright>[COPYRIGHT]</copyright> | ||
<license>GNU General Public License version 2 or later;</license> | ||
<version>__BUMP_VERSION__</version> | ||
<description>COM_FOOS_XML_DESCRIPTION</description> | ||
<namespace path="src">Joomla\Component\Foos</namespace> | ||
<scriptfile>script.php</scriptfile> | ||
<install> <!-- Runs on install --> | ||
<sql> | ||
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file> | ||
</sql> | ||
</install> | ||
<uninstall> <!-- Runs on uninstall --> | ||
<sql> | ||
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file> | ||
</sql> | ||
</uninstall> | ||
<update> <!-- Runs on update --> | ||
<schemas> | ||
<schemapath type="mysql">sql/updates/mysql</schemapath> | ||
</schemas> | ||
</update> | ||
<!-- Frond-end files --> | ||
<files folder="components/com_foos"> | ||
<folder>language</folder> | ||
<folder>src</folder> | ||
<folder>tmpl</folder> | ||
</files> | ||
<media folder="media/com_foos" destination="com_foos"> | ||
<folder>js</folder> | ||
</media> | ||
<!-- Back-end files --> | ||
<administration> | ||
<!-- Menu entries --> | ||
<menu view="foos">COM_FOOS</menu> | ||
<submenu> | ||
<menu link="option=com_foos">COM_FOOS</menu> | ||
<menu link="option=com_categories&extension=com_foos" | ||
view="categories" img="class:foos-cat" alt="Foos/Categories">JCATEGORY</menu> | ||
</submenu> | ||
<files folder="administrator/components/com_foos"> | ||
<filename>access.xml</filename> | ||
<filename>foos.xml</filename> | ||
<filename>config.xml</filename> | ||
<folder>forms</folder> | ||
<folder>language</folder> | ||
<folder>services</folder> | ||
<folder>sql</folder> | ||
<folder>src</folder> | ||
<folder>tmpl</folder> | ||
</files> | ||
</administration> | ||
<changelogurl>https://raw.githubusercontent.com/astridx/boilerplate/tutorial/changelog.xml</changelogurl> | ||
<updateservers> | ||
<server type="extension" name="Foo Updates">https://raw.githubusercontent.com/astridx/boilerplate/tutorial/foo_update.xml</server> | ||
</updateservers> | ||
<dlid prefix="dlid=" suffix="" /> | ||
</extension> |
103 changes: 103 additions & 0 deletions
103
dist/foos-1.0.0/administrator/components/com_foos/forms/filter_foos.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<form> | ||
|
||
<fields name="filter"> | ||
|
||
<field | ||
name="search" | ||
type="text" | ||
inputmode="search" | ||
label="COM_FOOS_FILTER_SEARCH_LABEL" | ||
description="COM_FOOS_FILTER_SEARCH_DESC" | ||
hint="JSEARCH_FILTER" | ||
/> | ||
|
||
<field | ||
name="featured" | ||
type="list" | ||
onchange="this.form.submit();" | ||
default="" | ||
> | ||
<option value="">JOPTION_SELECT_FEATURED</option> | ||
<option value="0">JUNFEATURED</option> | ||
<option value="1">JFEATURED</option> | ||
</field> | ||
|
||
<field | ||
name="published" | ||
type="status" | ||
label="JOPTION_SELECT_PUBLISHED" | ||
onchange="this.form.submit();" | ||
> | ||
<option value="">JOPTION_SELECT_PUBLISHED</option> | ||
</field> | ||
|
||
<field | ||
name="category_id" | ||
type="category" | ||
label="JOPTION_SELECT_CATEGORY" | ||
extension="com_foos" | ||
published="0,1,2" | ||
onchange="this.form.submit();" | ||
> | ||
<option value="">JOPTION_SELECT_CATEGORY</option> | ||
</field> | ||
|
||
<field | ||
name="access" | ||
type="accesslevel" | ||
label="JOPTION_SELECT_ACCESS" | ||
onchange="this.form.submit();" | ||
> | ||
<option value="">JOPTION_SELECT_ACCESS</option> | ||
</field> | ||
|
||
<field | ||
name="language" | ||
type="contentlanguage" | ||
label="JOPTION_SELECT_LANGUAGE" | ||
onchange="this.form.submit();" | ||
> | ||
<option value="">JOPTION_SELECT_LANGUAGE</option> | ||
<option value="*">JALL</option> | ||
</field> | ||
|
||
</fields> | ||
|
||
<fields name="list"> | ||
|
||
<field | ||
name="fullordering" | ||
type="list" | ||
label="JGLOBAL_SORT_BY" | ||
default="a.name ASC" | ||
onchange="this.form.submit();" | ||
> | ||
<option value="">JGLOBAL_SORT_BY</option> | ||
<option value="a.ordering ASC">JGRID_HEADING_ORDERING_ASC</option> | ||
<option value="a.ordering DESC">JGRID_HEADING_ORDERING_DESC</option> | ||
<option value="a.published ASC">JSTATUS_ASC</option> | ||
<option value="a.published DESC">JSTATUS_DESC</option> | ||
<option value="a.name ASC">JGLOBAL_TITLE_ASC</option> | ||
<option value="a.name DESC">JGLOBAL_TITLE_DESC</option> | ||
<option value="category_title ASC">JCATEGORY_ASC</option> | ||
<option value="category_title DESC">JCATEGORY_DESC</option> | ||
<option value="access_level ASC">JGRID_HEADING_ACCESS_ASC</option> | ||
<option value="access_level DESC">JGRID_HEADING_ACCESS_DESC</option> | ||
<option value="association ASC" requires="associations">JASSOCIATIONS_ASC</option> | ||
<option value="association DESC" requires="associations">JASSOCIATIONS_DESC</option> | ||
<option value="language_title ASC" requires="multilanguage">JGRID_HEADING_LANGUAGE_ASC</option> | ||
<option value="language_title DESC" requires="multilanguage">JGRID_HEADING_LANGUAGE_DESC</option> | ||
<option value="a.id ASC">JGRID_HEADING_ID_ASC</option> | ||
<option value="a.id DESC">JGRID_HEADING_ID_DESC</option> | ||
</field> | ||
|
||
<field | ||
name="limit" | ||
type="limitbox" | ||
label="JGLOBAL_LIST_LIMIT" | ||
default="25" | ||
onchange="this.form.submit();" | ||
/> | ||
</fields> | ||
</form> |
Oops, something went wrong.