🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:13:18 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Automation
/
Engine
/
Data
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/Automation/Engine/Data
🔄 Refresh
✏️
Editing: AutomationTemplateCategory.php
Writable
<?php declare(strict_types = 1); namespace MailPoet\Automation\Engine\Data; if (!defined('ABSPATH')) exit; class AutomationTemplateCategory { /** @var string */ private $slug; /** @var string */ private $name; public function __construct( string $slug, string $name ) { $this->slug = $slug; $this->name = $name; } public function getSlug(): string { return $this->slug; } public function getName(): string { return $this->name; } }
💾 Save Changes
❌ Cancel