Load the Template class in case it's not loaded
This commit is contained in:
parent
5b6b9ad1ff
commit
93a3b7bb18
|
@ -21,9 +21,6 @@
|
||||||
|
|
||||||
namespace OCA\WorkflowEngine\AppInfo;
|
namespace OCA\WorkflowEngine\AppInfo;
|
||||||
|
|
||||||
use OCP\Util;
|
|
||||||
use OCP\WorkflowEngine\RegisterCheckEvent;
|
|
||||||
|
|
||||||
class Application extends \OCP\AppFramework\App {
|
class Application extends \OCP\AppFramework\App {
|
||||||
|
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
|
@ -41,6 +38,11 @@ class Application extends \OCP\AppFramework\App {
|
||||||
$dispatcher->addListener(
|
$dispatcher->addListener(
|
||||||
'OCP\WorkflowEngine::loadAdditionalSettingScripts',
|
'OCP\WorkflowEngine::loadAdditionalSettingScripts',
|
||||||
function() {
|
function() {
|
||||||
|
if (!function_exists('style')) {
|
||||||
|
// This is hacky, but we need to load the template class
|
||||||
|
class_exists('OCP\Template', true);
|
||||||
|
}
|
||||||
|
|
||||||
style('workflowengine', [
|
style('workflowengine', [
|
||||||
'admin',
|
'admin',
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in New Issue