Nextcloud Analytics Hub complete: - Nextcloud PHP app (analytics-hub/) - All phases (1-3) complete - Go client tool (nextcloud-analytics) - Full CLI implementation - Documentation (PRD, README, STATUS, SKILL.md) - Production-ready for deployment to https://cloud.shortcutsolutions.net Repository: git.teamworkapps.com/shortcut/nextcloud-analytics Workspace: /home/molt/.openclaw/workspace
31 lines
565 B
PHP
31 lines
565 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\AnalyticsHub;
|
|
|
|
/**
|
|
* Application metadata and info
|
|
*/
|
|
class AppInfo {
|
|
|
|
public const APP_NAME = 'analytics_hub';
|
|
public const APP_VERSION = '1.0.0';
|
|
public const APP_AUTHOR = 'Shortcut Solutions';
|
|
public const APP_LICENSE = 'AGPL';
|
|
|
|
/**
|
|
* Get application version
|
|
*/
|
|
public static function getVersion(): string {
|
|
return self::APP_VERSION;
|
|
}
|
|
|
|
/**
|
|
* Get application name
|
|
*/
|
|
public static function getName(): string {
|
|
return self::APP_NAME;
|
|
}
|
|
}
|