Skip to content

Commit e4c8a58

Browse files
committed
Prepare 1.3.0 Release
1 parent 950c519 commit e4c8a58

File tree

121 files changed

+222
-222
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+222
-222
lines changed

com_swjprojects/admin/controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/controllers/categories.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/controllers/category.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/controllers/images.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
@@ -27,7 +27,7 @@ class SWJProjectsControllerImages extends BaseController
2727
*
2828
* @return bool Send json response with image src on success, empty string on failure.
2929
*
30-
* @since __DEPLOY_VERSION__
30+
* @since 1.3.0
3131
*/
3232
public function loadImage()
3333
{
@@ -52,7 +52,7 @@ public function loadImage()
5252
*
5353
* @return bool Send json response with true on success, false on failure.
5454
*
55-
* @since __DEPLOY_VERSION__
55+
* @since 1.3.0
5656
*/
5757
public function deleteImage()
5858
{
@@ -77,7 +77,7 @@ public function deleteImage()
7777
*
7878
* @return bool Send json response with image src on success, false on failure.
7979
*
80-
* @since __DEPLOY_VERSION__
80+
* @since 1.3.0
8181
*/
8282
public function uploadImage()
8383
{
@@ -108,7 +108,7 @@ public function uploadImage()
108108
*
109109
* @return bool Send json response with images src and field html on success, empty string on failure.
110110
*
111-
* @since __DEPLOY_VERSION__
111+
* @since 1.3.0
112112
*/
113113
public function loadImages()
114114
{
@@ -147,7 +147,7 @@ public function loadImages()
147147
*
148148
* @return bool Send json response with new images names on success, empty string on failure.
149149
*
150-
* @since __DEPLOY_VERSION__
150+
* @since 1.3.0
151151
*/
152152
public function uploadImages()
153153
{
@@ -180,7 +180,7 @@ public function uploadImages()
180180
*
181181
* @return bool Send json response with image src on success, empty string on failure.
182182
*
183-
* @since __DEPLOY_VERSION__
183+
* @since 1.3.0
184184
*/
185185
public function changeImages()
186186
{
@@ -214,7 +214,7 @@ public function changeImages()
214214
*
215215
* @return bool Send json response with true on success, false on failure.
216216
*
217-
* @since __DEPLOY_VERSION__
217+
* @since 1.3.0
218218
*/
219219
public function deleteImages()
220220
{
@@ -244,7 +244,7 @@ public function deleteImages()
244244
*
245245
* @return True on success, false on failure.
246246
*
247-
* @since __DEPLOY_VERSION__
247+
* @since 1.3.0
248248
*/
249249
public function setResponse($response = null, $message = null, $error = false)
250250
{
@@ -267,7 +267,7 @@ public function setResponse($response = null, $message = null, $error = false)
267267
*
268268
* @return boolean True if found and valid, false otherwise.
269269
*
270-
* @since __DEPLOY_VERSION__
270+
* @since 1.3.0
271271
*/
272272
public function checkToken($method = 'post', $json = true)
273273
{

com_swjprojects/admin/controllers/key.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
@@ -19,7 +19,7 @@ class SWJProjectsControllerKey extends FormController
1919
*
2020
* @var string
2121
*
22-
* @since __DEPLOY_VERSION__
22+
* @since 1.3.0
2323
*/
2424
protected $text_prefix = 'COM_SWJPROJECTS_KEY';
2525
}

com_swjprojects/admin/controllers/keys.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
@@ -20,7 +20,7 @@ class SWJProjectsControllerKeys extends AdminController
2020
*
2121
* @var string
2222
*
23-
* @since __DEPLOY_VERSION__
23+
* @since 1.3.0
2424
*/
2525
protected $text_prefix = 'COM_SWJPROJECTS_KEYS';
2626

@@ -33,7 +33,7 @@ class SWJProjectsControllerKeys extends AdminController
3333
*
3434
* @return BaseDatabaseModel|SWJProjectsModelKey A model object.
3535
*
36-
* @since __DEPLOY_VERSION__
36+
* @since 1.3.0
3737
*/
3838
public function getModel($name = 'Key', $prefix = 'SWJProjectsModel', $config = array('ignore_request' => true))
3939
{

com_swjprojects/admin/controllers/project.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/controllers/projects.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/controllers/version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/controllers/versions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/helpers/images.php

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
@@ -25,7 +25,7 @@ class SWJProjectsHelperImages
2525
*
2626
* @var array
2727
*
28-
* @since __DEPLOY_VERSION__
28+
* @since 1.3.0
2929
*/
3030
protected static $_image = array();
3131

@@ -34,7 +34,7 @@ class SWJProjectsHelperImages
3434
*
3535
* @var array
3636
*
37-
* @since __DEPLOY_VERSION__
37+
* @since 1.3.0
3838
*/
3939
protected static $_images = array();
4040

@@ -43,7 +43,7 @@ class SWJProjectsHelperImages
4343
*
4444
* @var array
4545
*
46-
* @since __DEPLOY_VERSION__
46+
* @since 1.3.0
4747
*/
4848
public static $mime_types = array('image/png', 'image/jpeg', 'image/gif', 'image/bmp', 'image/svg', 'image/svg+xml');
4949

@@ -59,7 +59,7 @@ class SWJProjectsHelperImages
5959
*
6060
* @return false|string Simple image path string on success, false on failure.
6161
*
62-
* @since __DEPLOY_VERSION__
62+
* @since 1.3.0
6363
*/
6464
public static function getImage($section = null, $pk = null, $name = null, $language = null, $absolute = false, $reload = false)
6565
{
@@ -105,7 +105,7 @@ public static function getImage($section = null, $pk = null, $name = null, $lang
105105
*
106106
* @return bool True on success, false on failure.
107107
*
108-
* @since __DEPLOY_VERSION__
108+
* @since 1.3.0
109109
*/
110110
public static function deleteImage($section = null, $pk = null, $name = null, $language = null)
111111
{
@@ -125,7 +125,7 @@ public static function deleteImage($section = null, $pk = null, $name = null, $l
125125
*
126126
* @return bool|string Simple image path string on success, false on failure.
127127
*
128-
* @since __DEPLOY_VERSION__
128+
* @since 1.3.0
129129
*/
130130
public static function uploadImage($section = null, $pk = null, $name = null, $language = null, $image = array())
131131
{
@@ -174,7 +174,7 @@ public static function uploadImage($section = null, $pk = null, $name = null, $l
174174
*
175175
* @return false|object[] Multiple images array on success, false on failure.
176176
*
177-
* @since __DEPLOY_VERSION__
177+
* @since 1.3.0
178178
*/
179179
public static function getImages($section = null, $pk = null, $folder = null, $values = null, $language = null)
180180
{
@@ -274,7 +274,7 @@ public static function getImages($section = null, $pk = null, $folder = null, $v
274274
*
275275
* @return false|array New images names array on success, false on failure.
276276
*
277-
* @since __DEPLOY_VERSION__
277+
* @since 1.3.0
278278
*/
279279
public static function uploadImages($section = null, $pk = null, $folder = null, $values = null, $language = null, $upload = array())
280280
{
@@ -341,7 +341,7 @@ public static function uploadImages($section = null, $pk = null, $folder = null,
341341
*
342342
* @return false|string New image src on success, false on failure.
343343
*
344-
* @since __DEPLOY_VERSION__
344+
* @since 1.3.0
345345
*/
346346
public static function changeImages($section = null, $pk = null, $folder = null, $language = null, $name = null, $image = array())
347347
{
@@ -406,7 +406,7 @@ public static function changeImages($section = null, $pk = null, $folder = null,
406406
*
407407
* @return bool True on success, false on failure.
408408
*
409-
* @since __DEPLOY_VERSION__
409+
* @since 1.3.0
410410
*/
411411
public static function deleteImages($section = null, $pk = null, $folder = null, $language = null, $name = null)
412412
{
@@ -443,7 +443,7 @@ public static function deleteImages($section = null, $pk = null, $folder = null,
443443
*
444444
* @return true|false True on success, false on failure.
445445
*
446-
* @since __DEPLOY_VERSION__
446+
* @since 1.3.0
447447
*/
448448
public static function checkImage($image = '')
449449
{
@@ -469,7 +469,7 @@ public static function checkImage($image = '')
469469
*
470470
* @return string Image name.
471471
*
472-
* @since __DEPLOY_VERSION__
472+
* @since 1.3.0
473473
*/
474474
public static function generateName($length = 11)
475475
{

com_swjprojects/admin/helpers/keys.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
@@ -19,7 +19,7 @@ class SWJProjectsHelperKeys
1919
*
2020
* @var array
2121
*
22-
* @since __DEPLOY_VERSION__
22+
* @since 1.3.0
2323
*/
2424
protected static $characters = null;
2525

@@ -30,7 +30,7 @@ class SWJProjectsHelperKeys
3030
*
3131
* @return string The key.
3232
*
33-
* @since __DEPLOY_VERSION__
33+
* @since 1.3.0
3434
*/
3535
public static function generateKey($length = null)
3636
{
@@ -52,7 +52,7 @@ public static function generateKey($length = null)
5252
*
5353
* @return array The key characters.
5454
*
55-
* @since __DEPLOY_VERSION__
55+
* @since 1.3.0
5656
*/
5757
public static function getCharacters()
5858
{
@@ -87,7 +87,7 @@ public static function getCharacters()
8787
*
8888
* @return string The key with mask.
8989
*
90-
* @since __DEPLOY_VERSION__
90+
* @since 1.3.0
9191
*/
9292
public static function maskKey($key = null)
9393
{

com_swjprojects/admin/helpers/swjprojects.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package SW JProjects Component
4-
* @version __DEPLOY_VERSION__
4+
* @version 1.3.0
55
* @author Septdir Workshop - www.septdir.com
66
* @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
77
* @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html
@@ -49,7 +49,7 @@ public static function addSubmenu($vName)
4949
*
5050
* @throws Exception
5151
*
52-
* @since __DEPLOY_VERSION__
52+
* @since 1.3.0
5353
*/
5454
public static function showDonateMessage()
5555
{

com_swjprojects/admin/language/en-GB/en-GB.com_swjprojects.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; @package SW JProjects Component
2-
; @version __DEPLOY_VERSION__
2+
; @version 1.3.0
33
; @author Septdir Workshop - www.septdir.com
44
; @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
55
; @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/language/en-GB/en-GB.com_swjprojects.sys.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; @package SW JProjects Component
2-
; @version __DEPLOY_VERSION__
2+
; @version 1.3.0
33
; @author Septdir Workshop - www.septdir.com
44
; @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
55
; @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

com_swjprojects/admin/language/ru-RU/ru-RU.com_swjprojects.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; @package SW JProjects Component
2-
; @version __DEPLOY_VERSION__
2+
; @version 1.3.0
33
; @author Septdir Workshop - www.septdir.com
44
; @copyright Copyright (c) 2018 - 2019 Septdir Workshop. All rights reserved.
55
; @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html

0 commit comments

Comments
 (0)