forked from YouweGit/PimcoreObjectBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectBridgeBundle.php
More file actions
31 lines (25 loc) · 844 Bytes
/
Copy pathObjectBridgeBundle.php
File metadata and controls
31 lines (25 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
namespace ObjectBridgeBundle;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
class ObjectBridgeBundle extends AbstractPimcoreBundle
{
use PackageVersionTrait;
protected function getComposerPackageName(): string
{
// getVersion() will use this name to read the version from
// PackageVersions and return a normalized value
return 'youwe/pimcore-object-bridge';
}
public function getJsPaths() {
return [
'/bundles/objectbridge/js/pimcore/objects/tags/objectBridge.js',
'/bundles/objectbridge/js/pimcore/objects/classes/data/objectBridge.js'
];
}
public function getCssPaths() {
return [
'/bundles/objectbridge/css/object-bridge.css'
];
}
}