Back to UserField class

Method getExcluded

protected mixed
getExcluded
()
Method to get the users to exclude from the list of users
Returns
  • mixed Array of users to exclude or null to to not exclude them
Since
  • 1.6
Class: UserField
Project: Joomla

Method getExcluded - Source code

/**
 * Method to get the users to exclude from the list of users
 *
 * @return  mixed  Array of users to exclude or null to to not exclude them
 *
 * @since   1.6
 */
protected function getExcluded()
{
    if (isset($this->element['exclude'])) {
        return explode(',', $this->element['exclude']);
    }
}