- Removed service dependencies from PageController constructor - Fixed AdminController config API signatures - Cleaned up Application.php resource loading - Updated template with proper resource includes - Simplified routes.php - Reduced analyticshub.zip from 50KB to 27KB - Status: Fixed and ready for redeployment
22 lines
433 B
PHP
22 lines
433 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\AnalyticsHub\AppInfo;
|
|
|
|
use OCP\AppFramework\App;
|
|
|
|
/**
|
|
* Application class for Mini-CMO Analytics Hub
|
|
*/
|
|
class Application extends App {
|
|
|
|
public const APP_NAME = 'analyticshub';
|
|
public const APP_ID = 'analyticshub';
|
|
public const APP_VERSION = '1.0.0';
|
|
|
|
public function __construct(array $urlParams = []) {
|
|
parent::__construct(self::APP_ID, $urlParams);
|
|
}
|
|
}
|