芝麻web文件管理V1.00
编辑当前文件:/home/elegucvf/public_html/src/deprecated/src/integrations/third-party/wincher.php
wincher_helper = $wincher_helper; $this->options_helper = $options_helper; } /** * If the integration is activated. * * @return bool If the integration is activated. */ public function is_enabled(): bool { return $this->wincher_helper->is_active(); } /** * Return this object represented by a key value array. * * @return array
Returns the name and if the feature is enabled. */ public function to_array(): array { return [ 'active' => $this->is_enabled(), 'loginStatus' => $this->is_enabled() && $this->wincher_helper->login_status(), 'websiteId' => $this->options_helper->get( 'wincher_website_id', '' ), 'autoAddKeyphrases' => $this->options_helper->get( 'wincher_automatically_add_keyphrases', false ), ]; } /** * Returns this object represented by a key value structure that is compliant with the script data array. * * @return array
Returns the legacy key and if the feature is enabled. */ public function to_legacy_array(): array { return [ 'wincherIntegrationActive' => $this->is_enabled(), 'wincherLoginStatus' => $this->is_enabled() && $this->wincher_helper->login_status(), 'wincherWebsiteId' => $this->options_helper->get( 'wincher_website_id', '' ), 'wincherAutoAddKeyphrases' => $this->options_helper->get( 'wincher_automatically_add_keyphrases', false ), ]; } }