You are here

public static function InstapageCmsPluginConnector::getSettingsModule in Instapage plugin 8.3

Same name and namespace in other branches
  1. 7.3 core/connectors/InstapageCmsPluginConnector.php \InstapageCmsPluginConnector::getSettingsModule()

Gets the settings module, a CMS-dependant part of the Settings page.

Return value

string HTML form with settings for currently used CMS only.

File

core/connectors/InstapageCmsPluginConnector.php, line 362

Class

InstapageCmsPluginConnector
Main connector class, used to integrate with PHP-based CMSes. It's job is to detect a CMS that executes the code and select proper CMS Connector.

Code

public static function getSettingsModule() {
  return self::getSelectedConnector()
    ->getSettingsModule();
}