Skip to content

Commit

Permalink
release v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsnuebel committed Feb 25, 2023
1 parent 02f8e87 commit 2ab4a8c
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 11 deletions.
10 changes: 5 additions & 5 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export const config = {
],
package: [
{
src: 'releasefiles/plugins/system/kicktempyootheme/',
glob: 'releasefiles/plugins/system/kicktempyootheme/**/**',
dest: 'sourcefiles/plg_system_kicktempyootheme/'
src: 'releasefiles/plugins/system/kickstart/',
glob: 'releasefiles/plugins/system/kickstart/**/**',
dest: 'sourcefiles/plg_system_kickstart/'
}
],
cleaner: [
Expand All @@ -46,7 +46,7 @@ export const config = {
archiver: [
{
destination : 'archives/',
name: 'plg_system_kicktempyootheme',
name: 'plg_system_kickstart',
suffixversion: true,
types: [
{
Expand All @@ -58,7 +58,7 @@ export const config = {
}
],
folders: [
'sourcefiles/plg_system_kicktempyootheme'
'sourcefiles/plg_system_kickstart'
],
files: [
]
Expand Down
60 changes: 60 additions & 0 deletions src/structure/plugins/system/kickstart/kickstart.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?php
/**
* @package [PACKAGE_NAME]
*
* @author [AUTHOR] <[AUTHOR_EMAIL]>
* @copyright [AUTHOR_URL]
* @license [LICENSE]
* @link [AUTHOR_URL]
*/

use Joomla\CMS\Plugin\CMSPlugin;

defined('_JEXEC') or die;

/**
* Kickstart plugin.
*
* @package plg_system_kicktempyootheme
* @since 1.0.0
*/
class plgSystemKickstart extends CMSPlugin
{
/**
* Application object
*
* @var CMSApplication
* @since 1.0.0
*/
protected $app;

/**
* Database object
*
* @var DatabaseDriver
* @since 1.0.0
*/
protected $db;

/**
* Affects constructor behavior. If true, language files will be loaded automatically.
*
* @var boolean
* @since 1.0.0
*/
protected $autoloadLanguage = true;

/**
* onAfterInitialise.
*
* @return void
*
* @since 1.0.0
*/
public function onAfterInitialise ()
{



}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<copyright>[COPYRIGHT]</copyright>
<license>[LICENSE]</license>
<version>[VERSION]</version>
<changelogurl>https://stage.s7.projekt.dev/changelog?repo=test</changelogurl>
<changelogurl>https://raw.githubusercontent.com/kicktemp/kickstart/main/changelog.xml</changelogurl>
<description>PLG_SYSTEM_KICKSTART_XML_DESCRIPTION</description>
<namespace path="src">Kicktemp\Plugin\System\Yootheme</namespace>
<scriptfile>script.php</scriptfile>
Expand All @@ -19,7 +19,7 @@
</config>
<updateservers>
<server type="extension" priority="1" name="[PROJECT_NAME]">
https://stage.s7.projekt.dev/update?repo=test
https://raw.githubusercontent.com/kicktemp/kickstart/main/update.xml
</server>
</updateservers>
</extension>
8 changes: 4 additions & 4 deletions updatetemplate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<client>site</client>
<section>updates</section>
<version>[VERSION]</version>
<changelogurl>https://kicktemp.shop/changelog/kickstart</changelogurl>
<infourl title="KicktempYootheme Plugin">https://kicktemp.shop/produkte/kickstart/</infourl>
<changelogurl>https://raw.githubusercontent.com/kicktemp/kickstart/main/changelog.xml</changelogurl>
<infourl title="Kickstart Plugin">https://github.com/Kicktemp/kickstart</infourl>
<downloads>
<downloadurl type="full" format="zip"><![CDATA[https://kicktemp.shop/download/kickstart/[VERSION]]]></downloadurl>
<downloadurl type="full" format="zip"><![CDATA[https://raw.githubusercontent.com/kicktemp/kickstart/main/update.xml[VERSION]]]></downloadurl>
</downloads>
<sha256>[SHA256]</sha256>
<sha384>[SHA384]</sha384>
Expand All @@ -19,7 +19,7 @@
<tag>stable</tag>
</tags>
<maintainer>Kicktemp GmbH</maintainer>
<maintainerurl>https://kicktemp.shop</maintainerurl>
<maintainerurl>https://kicktemp.com</maintainerurl>
<php_minimum>7.2.5</php_minimum>
<targetplatform name="joomla" version="4.[012]"/>
</update>

0 comments on commit 2ab4a8c

Please sign in to comment.