public function LinkitProfile::getEnabledAttributePlugins in Linkit 7.3
Construct an array with all the enabled attribute plugins for this profile.
Return value
An array with all enabled attribute plugins for this profile.
File
- includes/
profile.class.php, line 83 - Linkit Profile class.
Class
- LinkitProfile
- Linkit Profile class implementation.
Code
public function getEnabledAttributePlugins() {
if (!isset($this->enabled_attribute_plugins)) {
$this
->setEnabledAttributePlugins();
}
return $this->enabled_attribute_plugins;
}