Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ci/files/config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ opendxp:
email:
sender:
name: opendxp
email: contact@opendxp.ch
email: contact@opendxp.io
return:
name: opendxp
email: contact@opendxp.ch
email: contact@opendxp.io
config_location:
image_thumbnails:
write_target:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# License
- Original Copyright (c) Pimcore GmbH (https://pimcore.com)
- Modification Copyright (c) OpenDXP (https://www.opendxp.ch)
- Modification Copyright (c) OpenDXP (https://www.opendxp.io)

This software is a fork of Pimcore Community Edition, originally licensed under the GNU General Public License version 3 (GPLv3).

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Any use of the Pimcore® mark in this repository is purely descriptive to identi
***

## Contact
For inquiries, suggestions, or contributions, feel free to reach us at contact@opendxp.ch.
For inquiries, suggestions, or contributions, feel free to reach us at contact@opendxp.io.

## About
OpenDXP is a community-driven project initiated by [DACHCOM.DIGITAL](https://www.dachcom.com/de-ch) (Rheineck, Switzerland) and maintained by its community and contributors.
Expand Down
2 changes: 1 addition & 1 deletion bundles/CoreBundle/translations/admin.sk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ email_cc: "K\xF3pia (CC)"
email_bcc: "Skryt\xE1 k\xF3pia (BCC)"
email_settings: Nastavenie e-mailu
email_settings_receiver_description: "Viacer\xFDch pr\xEDjemcov m\xF4\u017Eete zada\u0165
oddelen\xFDch bodko\u010Diarkou.<br/>Pr\xEDklad: prijemca1@opendxp.ch; prijemca2@opendxp.ch"
oddelen\xFDch bodko\u010Diarkou.<br/>Pr\xEDklad: prijemca1@opendxp.io; prijemca2@opendxp.io"
email_logs: "Odoslan\xE9 e-maily"
email_log_sent_Date: "D\xE1tum odoslania"
predefined_document_type: "Preddefinovan\xFD typ dokumentov"
Expand Down
2 changes: 1 addition & 1 deletion doc/01_Getting_Started/06_Create_a_First_Project.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Then we can also put some HTML and template code into it:
<body>
<div id="site">
<div id="logo">
<a href="https://www.opendxp.ch/"><img src="/bundles/opendxpadmin/img/logo-claim-gray.svg" style="width: 400px;"/></a>
<a href="https://www.opendxp.io/"><img src="/bundles/opendxpadmin/img/logo-claim-gray.svg" style="width: 400px;"/></a>
<hr/>
</div>
{{ block('content') }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Document path and pretty URLs come third in the route processing priority.

## Document Path
Every document has a path (in the document tree) that directly represents the address in the browser
(e.g. https://demo.opendxp.ch/en/basic-examples).
(e.g. https://demo.opendxp.io/en/basic-examples).

If there is a document path matching the requested path info, the route then uses the controller, action and view defined in the
document's settings, passing them to the dispatcher along with the document itself.
Expand Down
8 changes: 4 additions & 4 deletions doc/05_Objects/01_Object_Classes/01_Data_Types/65_Others.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ programmatically an `OpenDxp\Model\DataObject\Data\Link` object needs to be inst

```php
$l = new DataObject\Data\Link();
$l->setPath("http://www.opendxp.ch");
$l->setText("opendxp.ch");
$l->setTitle("Visit opendxp.ch");
$l->setPath("http://www.opendxp.io");
$l->setText("opendxp.io");
$l->setTitle("Visit opendxp.io");
$object->setLink($l);
```

Expand Down Expand Up @@ -121,7 +121,7 @@ OpenDxp\Model\DataObject\ClassDefinition\Data\EncryptedField::setStrictMode(fals

A slug is the part of a URL which identifies a particular page on a website in an easy
to read form. In other words, it’s the part of the URL that explains the page’s content.
For example, if the URL is `https://opendxp.ch/slug`, then the slug simply is `/slug`.
For example, if the URL is `https://opendxp.io/slug`, then the slug simply is `/slug`.

![URL Slug](../../../img/classes-datatypes-urlslug.png)

Expand Down
2 changes: 1 addition & 1 deletion doc/18_Tools_and_Features/39_Sitemaps.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ If configured, OpenDXP will set the domain configured as main domain in system s
will be overridden from the current request in the web context when using the on-the-fly method by adding the route. When
using the `presta:sitemaps:dump` command, you can override those parameters by passing the `--base-url` option:

$ bin/console presta:sitemaps:dump --base-url=https://opendxp.ch/
$ bin/console presta:sitemaps:dump --base-url=https://opendxp.io/

For details see:

Expand Down
4 changes: 2 additions & 2 deletions doc/19_Development_Tools_and_Details/09_Cache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ integrated with OpenDXP's cache clearing functionality.
$lifetime = 99999;
$cacheKey = md5($uri);
if(!$data = \OpenDxp\Cache::load($cacheKey)) {
$data = \OpenDxp\Tool::getHttpData('http://www.opendxp.ch/...');
$data = \OpenDxp\Tool::getHttpData('http://www.opendxp.io/...');
\OpenDxp\Cache::save(
$data,
$cacheKey,
Expand Down Expand Up @@ -107,7 +107,7 @@ if(!$data = \OpenDxp\Cache::load($cacheKey)) {
Sometimes it's useful to deactivate the cache for testing purposes for a single request. You
can do this by passing the URL parameter `opendxp_nocache=true`. Note: This is only possible if you are in [DEBUG MODE](../13_Debugging.md#debug-mode)

For example: `http://opendxp.ch/download?opendxp_nocache=true`
For example: `http://opendxp.io/download?opendxp_nocache=true`

This will disable the entire cache, not only the output-cache. To disable only the output-cache
you can add this URL parameter: `?opendxp_outputfilters_disabled=true`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ $params = ['firstName' => 'Pim', 'lastName' => 'Core', 'product' => 73613];

//sending an email document (opendxp document)
$mail = new \OpenDxp\Mail();
$mail->to('example@opendxp.ch');
$mail->to('example@opendxp.io');
$mail->setDocument('/email/myemaildocument');
$mail->setParams($params);
$mail->send();
Expand All @@ -40,14 +40,14 @@ $mail->send();
// sending a text-mail

$mail = new \OpenDxp\Mail();
$mail->to('example@opendxp.ch');
$mail->to('example@opendxp.io');
$mail->text("This is just plain text");
$mail->send();

// Sending a rich text (HTML) email with Twig expressions
$mail = new \OpenDxp\Mail();
$mail->to('example@opendxp.ch');
$mail->bcc("bcc@opendxp.ch");
$mail->to('example@opendxp.io');
$mail->bcc("bcc@opendxp.io");
$mail->setParams([
'myParam' => 'Just a simple text'
]);
Expand All @@ -61,7 +61,7 @@ if($asset instanceof Asset) {

//Embedding Images
$mail = new \OpenDxp\Mail();
$mail->to('example@opendxp.ch');
$mail->to('example@opendxp.io');

$mail->embed($asset->getData(), 'logo', $asset->getMimeType());
//or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ opendxp:
email:
sender:
name: 'OpenDXP Demo'
email: contact@opendxp.ch
email: contact@opendxp.io
return:
name: ''
email: ''
Expand Down Expand Up @@ -68,7 +68,7 @@ $params = array('firstName' => 'Pim',

//sending the email
$mail = new \OpenDxp\Mail();
$mail->to('example@opendxp.ch');
$mail->to('example@opendxp.io');
$mail->setDocument('/email/myemaildocument');
$mail->setParams($params);
$mail->send();
Expand All @@ -83,16 +83,16 @@ Regarding the product {{ product.getName() }} ....
#### Sending a Plain Text Email:
```php
$mail = new \OpenDxp\Mail();
$mail->to('example@opendxp.ch');
$mail->to('example@opendxp.io');
$mail->text("This is just plain text");
$mail->send();
```

#### Sending a Rich Text (HTML) Email:
```php
$mail = new \OpenDxp\Mail();
$mail->to('example@opendxp.ch');
$mail->bcc("bcc@opendxp.ch");
$mail->to('example@opendxp.io');
$mail->bcc("bcc@opendxp.io");
$mail->html("<b>some</b> rich text");
$mail->send();
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ class IndexPageCest
$I->canSeeResponseCodeIs(200);
$I->amOnRoute('document_1');

$I->seeElement('#site #logo a', ['href' => 'http://www.opendxp.ch/']);
$I->seeElement('#site #logo a', ['href' => 'http://www.opendxp.io/']);
$I->seeElement('#site #logo img', ['src' => '/bundles/opendxpadmin/img/logo-claim-gray.svg']);
}
}
Expand Down
6 changes: 3 additions & 3 deletions tests/Model/DataType/LinkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function testSave(): void
{
$linkObject = $this->createLinkObject();
$link = new Link();
$link->setDirect('https://www.opendxp.ch/');
$link->setDirect('https://www.opendxp.io/');
$linkObject->setTestlink($link);
$linkObject->setLtestlink($link);
$linkObject->save();
Expand Down Expand Up @@ -147,8 +147,8 @@ public function testCheckValidity(): void
{
try {
$linkObject = $this->createLinkObject();
$linkObject->setTestlink('https://www.opendxp.ch/');
$linkObject->setLtestlink('https://www.opendxp.ch/');
$linkObject->setTestlink('https://www.opendxp.io/');
$linkObject->setLtestlink('https://www.opendxp.io/');
$this->fail('Expected a TypeError');
} catch (Throwable $e) {
$this->assertInstanceOf(TypeError::class, $e);
Expand Down