You are here

public function LinkitProfile::getEnabledsearchPlugins in Linkit 7.3

Construct an array with all enabled search plugins for this profile.

Return value

An array with all enabled search plugins for this profile.

File

includes/profile.class.php, line 96
Linkit Profile class.

Class

LinkitProfile
Linkit Profile class implementation.

Code

public function getEnabledsearchPlugins() {
  if (!isset($this->enabled_search_plugins)) {
    $this
      ->setEnabledsearchPlugins();
  }
  return $this->enabled_search_plugins;
}