Skip to content

Commit

Permalink
Adds new helper classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Llewellynvdm committed Apr 4, 2022
1 parent ec827b7 commit c5be4ff
Show file tree
Hide file tree
Showing 15 changed files with 320 additions and 355 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo

Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have!

You can install it quite easily and with no limitations. On [github](https://github.com/vdm-io/Joomla-Component-Builder/releases) is the latest release (2.12.15) with **ALL** its features and **ALL** concepts totally open-source and free!
You can install it quite easily and with no limitations. On [github](https://github.com/vdm-io/Joomla-Component-Builder/releases) is the latest release (2.12.16) with **ALL** its features and **ALL** concepts totally open-source and free!

> Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45)
Expand Down Expand Up @@ -143,11 +143,11 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 12th March, 2022
+ *Version*: 2.12.15
+ *Last Build*: 4th April, 2022
+ *Version*: 2.12.16
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
+ *Line count*: **286346**
+ *Line count*: **286290**
+ *Field count*: **1580**
+ *File count*: **1850**
+ *Folder count*: **260**
Expand Down
8 changes: 4 additions & 4 deletions admin/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo

Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have!

You can install it quite easily and with no limitations. On [github](https://github.com/vdm-io/Joomla-Component-Builder/releases) is the latest release (2.12.15) with **ALL** its features and **ALL** concepts totally open-source and free!
You can install it quite easily and with no limitations. On [github](https://github.com/vdm-io/Joomla-Component-Builder/releases) is the latest release (2.12.16) with **ALL** its features and **ALL** concepts totally open-source and free!

> Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45)

Expand Down Expand Up @@ -143,11 +143,11 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 12th March, 2022
+ *Version*: 2.12.15
+ *Last Build*: 4th April, 2022
+ *Version*: 2.12.16
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
+ *Line count*: **286346**
+ *Line count*: **286290**
+ *Field count*: **1580**
+ *File count*: **1850**
+ *Folder count*: **260**
Expand Down
7 changes: 4 additions & 3 deletions admin/helpers/compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use VDM\Joomla\Utilities\StringHelper;
use VDM\Joomla\Utilities\ArrayHelper;
use VDM\Joomla\Utilities\ObjectHelper;
use VDM\Joomla\Utilities\FileHelper;
use VDM\Joomla\Utilities\MathHelper;

// Use the component builder autoloader
Expand Down Expand Up @@ -1103,7 +1104,7 @@ private function zipComponent()
&$this->componentFolderName, &$this->componentData)
);
//create the zip file
if (ComponentbuilderHelper::zip(
if (FileHelper::zip(
$this->componentPath, $this->filepath['component']
))
{
Expand Down Expand Up @@ -1195,7 +1196,7 @@ private function zipModules()
&$this->tempPath, &$module->zip_name, &$module)
);
//create the zip file
if (ComponentbuilderHelper::zip(
if (FileHelper::zip(
$module->folder_path,
$this->filepath['modules'][$module->id]
))
Expand Down Expand Up @@ -1289,7 +1290,7 @@ private function zipPlugins()
&$this->tempPath, &$plugin->zip_name, &$plugin)
);
//create the zip file
if (ComponentbuilderHelper::zip(
if (FileHelper::zip(
$plugin->folder_path,
$this->filepath['plugins'][$plugin->id]
))
Expand Down
Loading

0 comments on commit c5be4ff

Please sign in to comment.