| 1234567891011121314151617181920212223 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Packages\WhmcsService\UI\ConfigurableOption\Buttons;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\AdminArea;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Buttons\ButtonDataTableModalAction;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\Buttons\ButtonRedirect;
- class OptionDetails extends ButtonRedirect implements AdminArea
- {
- protected $id = 'optionDetailsButton';
- protected $name = 'optionDetailsButton';
- protected $title = 'optionDetailsButtonTitle';
- public function initContent()
- {
- $this->addHtmlAttribute('v-if', "dataRow.exists");
- $this->rawUrl = 'configproductoptions.php?action=managegroup';
- $this->setRedirectParams(['id' => ':gid']);
- }
- }
|