>> */ public static function getOptionInputData() { return [ 'enabled' => [ 'label' => 'Enabled', 'type' => 'boolean', 'description' => 'Enable or disable the ticket system.', ], 'notify' => [ 'label' => 'Notify', 'type' => 'select', 'description' => 'Who will receive an E-Mail when a new Ticket is created.', 'options' => [ 'admin' => 'Admins', 'moderator' => 'Moderators', 'all' => 'Admins and Moderators', 'none' => 'Nobody', ], ], ]; } }