Skip to content

Commit

Permalink
Replace ph7cms.com domain to ph7builder.com
Browse files Browse the repository at this point in the history
To prevent issues later on if ph7cms.com isnt renewed in the future
  • Loading branch information
pH-7 committed Jun 6, 2022
1 parent 102f2da commit 3dfcfbd
Show file tree
Hide file tree
Showing 63 changed files with 67 additions and 71 deletions.
2 changes: 1 addition & 1 deletion _protected/app/configs/environment/all.env.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @desc File for all environments.
*
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link http://ph7cms.com
* @link http://ph7builder.com
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config / Environment
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/configs/environment/development.env.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @title Development Environment File
*
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link http://ph7cms.com
* @link http://ph7builder.com
* @copyright (c) 2012-2021, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config / Environment
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/configs/environment/production.env.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @title Production Environment File
*
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @link http://ph7cms.com
* @link http://ph7builder.com
* @copyright (c) 2012-2021, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / Config / Environment
Expand Down
6 changes: 3 additions & 3 deletions _protected/app/langs/en_US/LC_MESSAGES/global.po
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ msgid "Your name doesn't seem to be correct."
msgstr ""

#: _protected/app/system/core/assets/ajax/ValidateCoreAjax.php:262
msgid "Your must enter a valid url (e.g., http://ph7cms.com)."
msgid "Your must enter a valid url (e.g. http://ph7builder.com)."
msgstr ""

#: _protected/app/system/core/assets/ajax/ValidateCoreAjax.php:284
Expand Down Expand Up @@ -4143,7 +4143,7 @@ msgid "Description of the affiliate's site(s)."
msgstr ""

#: _protected/app/system/modules/affiliate/forms/AddAffiliateForm.php:53
msgid "Main website where the affiliate is the owner (e.g. http://ph7cms.com)"
msgid "Main website where the affiliate is the owner (e.g. http://ph7builder.com)"
msgstr ""

#: _protected/app/system/modules/affiliate/forms/AddAffiliateForm.php:54
Expand Down Expand Up @@ -13635,7 +13635,7 @@ msgid "Error: %element% cannot exceed %0% character(s)."
msgstr ""

#: _protected/framework/Layout/Form/Engine/PFBC/Validation/Url.php:14
msgid "Error: %element% must contain a URL (e.g., <a href=\"http://ph7cms.com\">http://ph7cms.com</a>)."
msgid "Error: %element% must contain a URL (e.g. <a href=\"http://ph7builder.com\">http://ph7builder.com</a>)."
msgstr ""

#: _protected/framework/Layout/Form/Engine/PFBC/Validation/Username.php:33
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/modules/helloworld/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "1.0.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ protected function name($sValue)
protected function url($sValue)
{
if (!$this->oValidate->url($sValue)) {
$this->sMsg = t('Your must enter a valid url (e.g., http://ph7builder.com).');
$this->sMsg = t('Your must enter a valid url (e.g. http://ph7builder.com).');
} else {
$this->iStatus = 1;
$this->sMsg = t('OK!');
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/admin123/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "0.7.0"
author = "Pierre-Henry Soria"
company = "pH7 CMS (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static function display()
$oForm->addElement(new Textbox(t('Postal Code:'), 'zip_code', ['id' => 'str_zip_code', 'validation' => new Str(2, 15), 'required' => 1]));
$oForm->addElement(new Phone(t('Phone Number:'), 'phone', ['description' => t('Enter full phone number with area code (e.g., +44768374890).'), 'required' => 1]));
$oForm->addElement(new Textarea(t('Description:'), 'description', ['description' => t("Description of the affiliate's site(s)."), 'validation' => new Str(10, 2000), 'required' => 1]));
$oForm->addElement(new Url(t('Website:'), 'website', ['description' => t('Main website where the affiliate is the owner (e.g. http://ph7cms.com)'), 'required' => 1]));
$oForm->addElement(new Url(t('Website:'), 'website', ['description' => t('Main website where the affiliate is the owner (e.g. http://ph7builder.com)'), 'required' => 1]));
$oForm->addElement(new Email(t('Bank Account:'), 'bank_account', ['description' => t('Bank Account (PayPal Email Address).'), 'validation' => new BankAccount]));
$oForm->addElement(new HTMLExternal('<script src="' . PH7_URL_STATIC . PH7_JS . 'geo/autocompleteCity.js"></script>'));
$oForm->addElement(new Button);
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/api/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "2.0.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @copyright (c) 2015-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / App / System / Module / Api / Controller
* @link http://ph7cms.com
* @link http://ph7builder.com
* @link http://github.com/pH7Software/pH7Builder-HTTP-REST-Push-Data
*/

Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/birthday/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/blog/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.3.3"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/chat/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/comment/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/contact/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.2"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hi@ph7.me"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/error/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.2"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hi@ph7.me"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/field/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.2.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/forum/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.2.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/friend/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.0"
author = "Pierre-Henry Soria"
company = "pH7 CMS (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/game/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.4.2"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "GNU GPL v3"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/hotornot/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "2.0.0"
author = "Pierre-Henry Soria"
company = "pH7 CMS (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/invite/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.4"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/mail/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/map/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.8"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/newsletter/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "0.8.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/note/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.0.3"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/page/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/payment/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = "1.0.1"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "2.0.7"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/picture/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.1.2"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.2.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/pwa/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.0.2"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.0.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/report/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.1.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.2.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "1.3.0"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "0.9.5"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/user/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "0.9.8"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/app/system/modules/video/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "1.0.7"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"

[module.setting]
Expand Down
2 changes: 1 addition & 1 deletion _protected/app/system/modules/xml/config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ version = "2.0.2"
author = "Pierre-Henry Soria"
company = "pH7Builder (Pierre-Henry Soria)"
license = "MIT"
website = "http://ph7cms.com"
website = "http://ph7builder.com"
email = "hello@ph7builder.com"
2 changes: 1 addition & 1 deletion _protected/framework/Api/Tool.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright (c) 2012-2019, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / Framework / Api
* @link http://ph7cms.com
* @link http://ph7builder.com
*/

declare(strict_types=1);
Expand Down
2 changes: 1 addition & 1 deletion _protected/framework/Core/Core.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Pierre-Henry Soria <hi@ph7.me>
* @copyright (c) 2012-2020, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @link https://ph7cms.com
* @link https://ph7builder.com
* @package PH7 / Framework / Core
*/

Expand Down
2 changes: 1 addition & 1 deletion _protected/framework/File/Transfer/Ftp.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @package PH7 / Framework / File / Transfer
* @version 0.8
* @link http://ph7cms.com
* @link http://ph7builder.com
* @linkDoc http://php.net/manual/book.ftp.php
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @author Pierre-Henry Soria <hello@ph7builder.com>
* @copyright (c) 2012-2020, Pierre-Henry Soria. All Rights Reserved.
* @license MIT License; See PH7.LICENSE.txt and PH7.COPYRIGHT.txt in the root directory.
* @link http://ph7cms.com
* @link http://ph7builder.com
* @package PH7 / Framework / Layout / Form / Engine / PFBC / Element
*/

Expand Down
Loading

0 comments on commit 3dfcfbd

Please sign in to comment.