Skip to content

Commit

Permalink
fixed folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Fasching committed Jun 8, 2017
1 parent 144ed9a commit 3194dd1
Show file tree
Hide file tree
Showing 23 changed files with 2,816 additions and 2,816 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_pimcore_outputdataconfig_backend:
resource: "@OutputDataConfigToolkitBundle/Controller/"
type: annotation
prefix: /admin/outputdataconfig
_pimcore_outputdataconfig_backend:
resource: "@OutputDataConfigToolkitBundle/Controller/"
type: annotation
prefix: /admin/outputdataconfig
118 changes: 59 additions & 59 deletions Resources/public/css/admin.css → src/Resources/public/css/admin.css
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Enterprise License (PEL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PEL
*/


.pimcore_icon_operator_group {
background: url("/pimcore/static6/img/flat-color-icons/multiple_inputs.svg") center center no-repeat !important;
}
.pimcore_icon_operator_concatenator {
background: url("/pimcore/static6/img/flat-color-icons/capacitor.svg") center center no-repeat !important;
}
.bundle_outputdataconfig_icon {
background: url("/pimcore/static6/img/flat-color-icons/grid.svg") center center no-repeat !important;
}
.bundle_outputdataconfig_icon:before {
position: absolute;
width: 12px;
height: 12px;
bottom: 0px;
right: 0px;
content: "";
background: url(/pimcore/static6/img/flat-color-icons/go.svg) center center no-repeat !important;
}




.pimcore_icon_operator_text {
background: url("/pimcore/static6/img/flat-color-icons/text.svg") center center no-repeat !important;
}

.pimcore_icon_operator_table {
background: url("/pimcore/static6/img/flat-color-icons/data_sheet.svg") center center no-repeat !important;
}

.pimcore_icon_operator_tablerow {
background: url("/pimcore/static6/img/flat-color-icons/table-row.svg") center center no-repeat !important;
}

.pimcore_icon_operator_tablecol {
background: url("/pimcore/static6/img/flat-color-icons/table-column.svg") center center no-repeat !important;
}

.pimcore_icon_operator_cell_formater {
background: url("/pimcore/static6/img/icon/style_edit.png") no-repeat scroll left center transparent !important;
}

.pimcore_icon_operator_textaddon {
background: url("/pimcore/static6/img/icon/font_add.png") no-repeat scroll left center transparent !important;
}
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Enterprise License (PEL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PEL
*/


.pimcore_icon_operator_group {
background: url("/pimcore/static6/img/flat-color-icons/multiple_inputs.svg") center center no-repeat !important;
}
.pimcore_icon_operator_concatenator {
background: url("/pimcore/static6/img/flat-color-icons/capacitor.svg") center center no-repeat !important;
}
.bundle_outputdataconfig_icon {
background: url("/pimcore/static6/img/flat-color-icons/grid.svg") center center no-repeat !important;
}
.bundle_outputdataconfig_icon:before {
position: absolute;
width: 12px;
height: 12px;
bottom: 0px;
right: 0px;
content: "";
background: url(/pimcore/static6/img/flat-color-icons/go.svg) center center no-repeat !important;
}




.pimcore_icon_operator_text {
background: url("/pimcore/static6/img/flat-color-icons/text.svg") center center no-repeat !important;
}

.pimcore_icon_operator_table {
background: url("/pimcore/static6/img/flat-color-icons/data_sheet.svg") center center no-repeat !important;
}

.pimcore_icon_operator_tablerow {
background: url("/pimcore/static6/img/flat-color-icons/table-row.svg") center center no-repeat !important;
}

.pimcore_icon_operator_tablecol {
background: url("/pimcore/static6/img/flat-color-icons/table-column.svg") center center no-repeat !important;
}

.pimcore_icon_operator_cell_formater {
background: url("/pimcore/static6/img/icon/style_edit.png") no-repeat scroll left center transparent !important;
}

.pimcore_icon_operator_textaddon {
background: url("/pimcore/static6/img/icon/font_add.png") no-repeat scroll left center transparent !important;
}
82 changes: 41 additions & 41 deletions Resources/public/js/Bundle.js → src/Resources/public/js/Bundle.js
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Enterprise License (PEL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PEL
*/


pimcore.registerNS("pimcore.bundle.outputDataConfigToolkit.Bundle");

pimcore.bundle.outputDataConfigToolkit.Bundle = Class.create(pimcore.plugin.admin, {

getClassName: function () {
return "pimcore.bundle.outputDataConfigToolkit.Bundle";
},

initialize: function() {
pimcore.plugin.broker.registerPlugin(this);
},


uninstall: function() {

},

postOpenObject: function(object, type) {
if(pimcore.globalmanager.get("user").isAllowed("bundle_outputDataConfigToolkit")) {
var configTab = new pimcore.bundle.outputDataConfigToolkit.Tab(object, type);
object.tab.items.items[1].insert(object.tab.items.items[1].items.length, configTab.getLayout());
pimcore.layout.refresh();
}
}
});

new pimcore.bundle.outputDataConfigToolkit.Bundle();
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Enterprise License (PEL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PEL
*/


pimcore.registerNS("pimcore.bundle.outputDataConfigToolkit.Bundle");

pimcore.bundle.outputDataConfigToolkit.Bundle = Class.create(pimcore.plugin.admin, {

getClassName: function () {
return "pimcore.bundle.outputDataConfigToolkit.Bundle";
},

initialize: function() {
pimcore.plugin.broker.registerPlugin(this);
},


uninstall: function() {

},

postOpenObject: function(object, type) {
if(pimcore.globalmanager.get("user").isAllowed("bundle_outputDataConfigToolkit")) {
var configTab = new pimcore.bundle.outputDataConfigToolkit.Tab(object, type);
object.tab.items.items[1].insert(object.tab.items.items[1].items.length, configTab.getLayout());
pimcore.layout.refresh();
}
}
});

new pimcore.bundle.outputDataConfigToolkit.Bundle();
Loading

0 comments on commit 3194dd1

Please sign in to comment.