Skip to content

Commit b42a017

Browse files
committed
updated license and added code-style action
1 parent fcd4d0a commit b42a017

File tree

18 files changed

+231
-6
lines changed

18 files changed

+231
-6
lines changed

src/Resources/public/css/pimcore.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
114

215
.pimcore_icon_activities {
316
background: url(/bundles/pimcoreadmin/img/flat-color-icons/sports_mode.svg) center center no-repeat !important;

src/Resources/public/js/ActivityView.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
var ActivityView = pimcore.registerNS("pimcore.plugin.customermanagementframework.ActivityView");
216

317
ActivityView.config = {

src/Resources/public/js/CustomerView.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
var CustomerView = pimcore.registerNS("pimcore.plugin.customermanagementframework.CustomerView");
216

317
CustomerView.config = {

src/Resources/public/js/CustomerView/frontend.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
$(function() {
216
var customerExporter = {
317
init: function() {

src/Resources/public/js/LinkActivityDefinition/preview.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
$(function(){
216

317
var clipboard = new Clipboard('.js-copy-to-clipboard');

src/Resources/public/js/SegmentAddressSource.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
pimcore.registerNS("pimcore.document.newsletters.addressSourceAdapters.SegmentAddressSource");
216
pimcore.document.newsletters.addressSourceAdapters.SegmentAddressSource = Class.create({
317
initialize: function (document, data) {

src/Resources/public/js/SegmentAssignmentView.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
pimcore.registerNS("pimcore.plugin.customermanagementframework.segmentAssignmentTab");
216

317
pimcore.plugin.customermanagementframework.segmentAssignmentTab = Class.create({

src/Resources/public/js/WebserviceConfigurationView.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
pimcore.registerNS('pimcore.plugin.customermanagementframework.webserviceConfigurationView');
216
pimcore.plugin.customermanagementframework.webserviceConfigurationView = Class.create({
317

src/Resources/public/js/config/actions.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
/**
216
* trigger TYPES
317
*/

src/Resources/public/js/config/conditions.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/**
2+
* Pimcore
3+
*
4+
* This source file is available under two different licenses:
5+
* - GNU General Public License version 3 (GPLv3)
6+
* - Pimcore Commercial License (PCL)
7+
* Full copyright and license information is available in
8+
* LICENSE.md which is distributed with this source code.
9+
*
10+
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
11+
* @license http://www.pimcore.org/license GPLv3 and PCL
12+
*/
13+
14+
115
/**
216
* trigger TYPES
317
*/

0 commit comments

Comments
 (0)