frontendType = $frontendType; $this->configPath = $configPath; parent::__construct($name, $shortcut, $mode, $description, $defaultValue); } /** * Get frontend input type * * @return string */ public function getFrontendType() { return $this->frontendType; } /** * Get config path * * @return string */ public function getConfigPath() { return $this->configPath; } /** * No base validation * @SuppressWarnings(PHPMD.UnusedFormalParameter) * @param mixed $data * @return void */ public function validate($data) { } }