Ejemplo n.º 1
0
 /**
  * Function getJustNuKommunId
  * 
  * Returns name of current kommun
  *
  * Example:
  *      getJustNuKommunId  (  )
  */
 public function getJustNuKommunNamn()
 {
     if ($this->getJustNuKommunId()) {
         $kommun = Kommun::loadByid($this->getJustNuKommunId());
         return $kommun->getNamn();
     } else {
         return false;
     }
 }