dimti
3 years ago
commit
ae36a5cb0a
5 changed files with 136 additions and 0 deletions
@ -0,0 +1 @@ |
|||
/.idea |
@ -0,0 +1,96 @@ |
|||
<?php namespace Wpstudio\AssetsManifest; |
|||
|
|||
use Backend; |
|||
use System\Classes\PluginBase; |
|||
|
|||
/** |
|||
* assetsmanifest Plugin Information File |
|||
*/ |
|||
class Plugin extends PluginBase |
|||
{ |
|||
/** |
|||
* Returns information about this plugin. |
|||
* |
|||
* @return array |
|||
*/ |
|||
public function pluginDetails() |
|||
{ |
|||
return [ |
|||
'name' => 'assetsmanifest', |
|||
'description' => 'No description provided yet...', |
|||
'author' => 'wpstudio', |
|||
'icon' => 'icon-leaf' |
|||
]; |
|||
} |
|||
|
|||
/** |
|||
* Register method, called when the plugin is first registered. |
|||
* |
|||
* @return void |
|||
*/ |
|||
public function register() |
|||
{ |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Boot method, called right before the request route. |
|||
* |
|||
* @return array |
|||
*/ |
|||
public function boot() |
|||
{ |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Registers any front-end components implemented in this plugin. |
|||
* |
|||
* @return array |
|||
*/ |
|||
public function registerComponents() |
|||
{ |
|||
return []; // Remove this line to activate
|
|||
|
|||
return [ |
|||
'Wpstudio\Assetsmanifest\Components\MyComponent' => 'myComponent', |
|||
]; |
|||
} |
|||
|
|||
/** |
|||
* Registers any back-end permissions used by this plugin. |
|||
* |
|||
* @return array |
|||
*/ |
|||
public function registerPermissions() |
|||
{ |
|||
return []; // Remove this line to activate
|
|||
|
|||
return [ |
|||
'wpstudio.assetsmanifest.some_permission' => [ |
|||
'tab' => 'assetsmanifest', |
|||
'label' => 'Some permission' |
|||
], |
|||
]; |
|||
} |
|||
|
|||
/** |
|||
* Registers back-end navigation items for this plugin. |
|||
* |
|||
* @return array |
|||
*/ |
|||
public function registerNavigation() |
|||
{ |
|||
return []; // Remove this line to activate
|
|||
|
|||
return [ |
|||
'assetsmanifest' => [ |
|||
'label' => 'assetsmanifest', |
|||
'url' => Backend::url('wpstudio/assetsmanifest/mycontroller'), |
|||
'icon' => 'icon-leaf', |
|||
'permissions' => ['wpstudio.assetsmanifest.*'], |
|||
'order' => 500, |
|||
], |
|||
]; |
|||
} |
|||
} |
@ -0,0 +1,16 @@ |
|||
<?php namespace Wpstudio\AssetsManifest\Classes; |
|||
|
|||
class ManifestReader |
|||
{ |
|||
private $manifest = null; |
|||
|
|||
public function __construct(string $manifestPath) |
|||
{ |
|||
$this->manifest = json_decode(file_get_contents($manifestPath)); |
|||
} |
|||
|
|||
public function get($assetName) |
|||
{ |
|||
return $this->manifest->$assetName; |
|||
} |
|||
} |
@ -0,0 +1,22 @@ |
|||
{ |
|||
"name": "wpstudio/assetsmanifest-plugin", |
|||
"type": "october-plugin", |
|||
"description": "Extract full paths to assets files from manifest.json", |
|||
"require": { |
|||
"composer/installers": "~1.0" |
|||
}, |
|||
"keywords": [ |
|||
"manifest", |
|||
"json", |
|||
"webpack", |
|||
"assets", |
|||
"hash" |
|||
], |
|||
"license": "MIT", |
|||
"authors": [ |
|||
{ |
|||
"name": "WP Studio Team", |
|||
"email": "info@wpstudio.ru" |
|||
} |
|||
] |
|||
} |
@ -0,0 +1 @@ |
|||
1.0.1: First version of assetsmanifest |
Write
Preview
Loading…
Cancel
Save
Reference in new issue