mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-23 21:27:35 +00:00
structure
This commit is contained in:
parent
5c9cad0dc4
commit
cf80ccaebf
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
/packages
|
||||
/.idea
|
@ -80,16 +80,26 @@
|
||||
</fileset>
|
||||
</copy>
|
||||
|
||||
<copy todir="${destination.dir}/components/com_${component.name}">
|
||||
<fileset dir="${dirs.source}/components/com_${component.name}" includes="**/*.*"/>
|
||||
</copy>
|
||||
<if>
|
||||
<equals arg1="${frontend.exist}" arg2="yes"/>
|
||||
<then>
|
||||
<copy todir="${destination.dir}/components/com_${component.name}">
|
||||
<fileset dir="${dirs.source}/components/com_${component.name}" includes="**/*.*"/>
|
||||
</copy>
|
||||
</then>
|
||||
</if>
|
||||
|
||||
|
||||
<copy todir="${destination.dir}/language/">
|
||||
<fileset dir="${dirs.source}/language/">
|
||||
<include name="**/*.${component.name}.ini"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<if>
|
||||
<equals arg1="${frontendLang.exist}" arg2="yes"/>
|
||||
<then>
|
||||
<copy todir="${destination.dir}/language/">
|
||||
<fileset dir="${dirs.source}/language/">
|
||||
<include name="**/*.${component.name}.ini"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
</then>
|
||||
</if>
|
||||
|
||||
<if>
|
||||
<equals arg1="${media.exist}" arg2="1"/>
|
||||
|
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<install method="upgrade" type="component" version="1.5.0">
|
||||
<name>COM_@@COMPONENTNAMEUPPERCASE@@</name>
|
||||
<author>Compojoom.com</author>
|
||||
<creationDate>@@DATE@@</creationDate>
|
||||
<copyright>(C) 2012 compojoom.com</copyright>
|
||||
<authorEmail>daniel@compojoom.com</authorEmail>
|
||||
<authorUrl>www.compojoom.com</authorUrl>
|
||||
<version>@@VERSION@@</version>
|
||||
<license>http://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
|
||||
<description><![CDATA[Jedchecker will check your extension files and will let you know in advance if there are any possible problems with your extension for submitting to the JED]]>
|
||||
</description>
|
||||
<administration>
|
||||
<menu>COM_@@COMPONENTNAMEUPPERCASE@@</menu>
|
||||
<files folder="administrator/components/com_@@COMPONENTNAME@@">
|
||||
##ADMINCOMPONENTPACKAGEFILES##
|
||||
</files>
|
||||
<languages folder="administrator/language">
|
||||
##ADMINLANGUAGEFILES##
|
||||
</languages>
|
||||
</administration>
|
||||
<media destination="com_@@COMPONENTNAME@@" folder="media/com_@@COMPONENTNAME@@">
|
||||
##MEDIAPACKAGEFILES##
|
||||
</media>
|
||||
</install>
|
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by JetBrains PhpStorm.
|
||||
* User: Dq
|
||||
* Date: 21/05/12
|
||||
* Time: 10:40
|
||||
* To change this template use File | Settings | File Templates.
|
||||
*/
|
Loading…
Reference in New Issue
Block a user