isEnabled() public method

Point in this language is enabled?
public isEnabled ( ) : boolean
return boolean
Example #1
0
 /**
  * Point is displayable?
  * @return bool
  */
 public function isEnabled($language)
 {
     $language = (int) $language;
     $contentLanguage = new Geo_MapLocationLanguage($this, $language);
     return $contentLanguage->isEnabled();
 }