* @copyright 2007-2026 De Websmid BV * @license Valid for 1 website (or project) for each purchase of license * International Registered Trademark & Property of De Websmid BV */ use Module\WsFaqAccordion\Module\Install; use Module\WsFaqAccordion\Module\displayHooks; use Module\WsFaqAccordion\Module\adminHooks; if (!defined('_PS_VERSION_')) { exit; } class ws_faqAccordion extends Module { use Install; use displayHooks; use adminHooks; public function __construct() { $this->name = 'ws_faqAccordion'; $this->tab = 'other'; $this->version = '1.0.0'; $this->author = 'Isabelle Oving-Anno | De Websmid b.v.'; $this->need_instance = 0; $this->ps_versions_compliancy = [ 'min' => '1.7.0', 'max' => '9.99.99', ]; $this -> bootstrap = true; parent::__construct(); $this->displayName = $this->l('FAQ Accordion'); $this->description = $this->l('Displays your info as a FAQ accordion'); } }