forked from joomla/Component-Builder
Also removed the dot from the related functions in gh-334
This commit is contained in:
parent
abb046f671
commit
1d5a99878a
@ -125,7 +125,7 @@ Watch the [proposed development workflow](https://vdm.bz/proposed-development-wo
|
|||||||
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
||||||
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
||||||
+ *First Build*: 30th April, 2015
|
+ *First Build*: 30th April, 2015
|
||||||
+ *Last Build*: 31st August, 2018
|
+ *Last Build*: 1st September, 2018
|
||||||
+ *Version*: 2.9.0
|
+ *Version*: 2.9.0
|
||||||
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
||||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||||
|
@ -125,7 +125,7 @@ Watch the [proposed development workflow](https://vdm.bz/proposed-development-wo
|
|||||||
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
|
||||||
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
|
||||||
+ *First Build*: 30th April, 2015
|
+ *First Build*: 30th April, 2015
|
||||||
+ *Last Build*: 31st August, 2018
|
+ *Last Build*: 1st September, 2018
|
||||||
+ *Version*: 2.9.0
|
+ *Version*: 2.9.0
|
||||||
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
||||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||||
|
@ -2336,7 +2336,7 @@ abstract class ComponentbuilderHelper
|
|||||||
* @return string On success the path or url is returned based on the type requested
|
* @return string On success the path or url is returned based on the type requested
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function getFilePath($type = 'path', $target = 'filepath', $fileType = null, $key = '', $default = JPATH_SITE . '/images/', $createIfNotSet = true)
|
public static function getFilePath($type = 'path', $target = 'filepath', $fileType = null, $key = '', $default = '', $createIfNotSet = true)
|
||||||
{
|
{
|
||||||
// make sure to always have a string/path
|
// make sure to always have a string/path
|
||||||
if(!self::checkString($default))
|
if(!self::checkString($default))
|
||||||
@ -2410,7 +2410,7 @@ abstract class ComponentbuilderHelper
|
|||||||
* @return string On success the path or url is returned based on the type requested
|
* @return string On success the path or url is returned based on the type requested
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function getFolderPath($type = 'path', $target = 'folderpath', $default = JPATH_SITE . '/images/', $createIfNotSet = true)
|
public static function getFolderPath($type = 'path', $target = 'folderpath', $default = '', $createIfNotSet = true)
|
||||||
{
|
{
|
||||||
// make sure to always have a string/path
|
// make sure to always have a string/path
|
||||||
if(!self::checkString($default))
|
if(!self::checkString($default))
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<extension type="component" version="3.2" method="upgrade">
|
<extension type="component" version="3.2" method="upgrade">
|
||||||
<name>COM_COMPONENTBUILDER</name>
|
<name>COM_COMPONENTBUILDER</name>
|
||||||
<creationDate>31st August, 2018</creationDate>
|
<creationDate>1st September, 2018</creationDate>
|
||||||
<author>Llewellyn van der Merwe</author>
|
<author>Llewellyn van der Merwe</author>
|
||||||
<authorEmail>llewellyn@joomlacomponentbuilder.com</authorEmail>
|
<authorEmail>llewellyn@joomlacomponentbuilder.com</authorEmail>
|
||||||
<authorUrl>http://www.joomlacomponentbuilder.com</authorUrl>
|
<authorUrl>http://www.joomlacomponentbuilder.com</authorUrl>
|
||||||
|
@ -2336,7 +2336,7 @@ abstract class ComponentbuilderHelper
|
|||||||
* @return string On success the path or url is returned based on the type requested
|
* @return string On success the path or url is returned based on the type requested
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function getFilePath($type = 'path', $target = 'filepath', $fileType = null, $key = '', $default = JPATH_SITE . '/images/', $createIfNotSet = true)
|
public static function getFilePath($type = 'path', $target = 'filepath', $fileType = null, $key = '', $default = '', $createIfNotSet = true)
|
||||||
{
|
{
|
||||||
// make sure to always have a string/path
|
// make sure to always have a string/path
|
||||||
if(!self::checkString($default))
|
if(!self::checkString($default))
|
||||||
@ -2410,7 +2410,7 @@ abstract class ComponentbuilderHelper
|
|||||||
* @return string On success the path or url is returned based on the type requested
|
* @return string On success the path or url is returned based on the type requested
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function getFolderPath($type = 'path', $target = 'folderpath', $default = JPATH_SITE . '/images/', $createIfNotSet = true)
|
public static function getFolderPath($type = 'path', $target = 'folderpath', $default = '', $createIfNotSet = true)
|
||||||
{
|
{
|
||||||
// make sure to always have a string/path
|
// make sure to always have a string/path
|
||||||
if(!self::checkString($default))
|
if(!self::checkString($default))
|
||||||
|
Loading…
Reference in New Issue
Block a user