| | |
| | | * Used for UI rendering in admin interfaces |
| | | */ |
| | | public string $title; // Human-readable service name (e.g., 'Google My Business') |
| | | public string $icon; // Phosphoricons icon slug |
| | | public string $icon = ''; // Phosphoricons icon slug |
| | | |
| | | /** |
| | | * Credentials & State |
| | |
| | | return $this->title; |
| | | } |
| | | |
| | | public static function title():string |
| | | { |
| | | return (new static())->getTitle(); |
| | | } |
| | | public static function icon():string |
| | | { |
| | | return (new static())->getIcon(); |
| | | } |
| | | |
| | | /********************************************************************* |
| | | RENDERING |
| | | *********************************************************************/ |
| | |
| | | { |
| | | return []; |
| | | } |
| | | |
| | | public function getIcon():string |
| | | { |
| | | return $this->icon; |
| | | } |
| | | } |