tbrehm
2013-03-27 6b3bfc2fbf53e079e64614cdca608d84326be868
server/lib/classes/system.inc.php
@@ -575,6 +575,29 @@
   }
   
   /**
    * Get the group id from an group
    *
    */
   function getgid($group){
      global $app;
        if($this->is_group($group)){
          $group_datei = $this->server_conf['group_datei'];
         $groups = $app->file->no_comments($group_datei);
         $lines = explode("\n", $groups);
         if(is_array($lines)){
          foreach($lines as $line){
               if(trim($line) != ""){
                  list($f1, $f2, $f3, $f4) = explode(':', $line);
                  if($f1 == $group) return $f3;
               }
            }
         }
        } else {
          return false;
        }
   }
   /**
    * Get all information from a user
    *
    */
@@ -1527,6 +1550,23 @@
         unset($shadow_file_array);
      }
   }
   function intval($string, $force_numeric = false) {
        if(intval($string) == 2147483647) {
            if($force_numeric == true) return floatval($string);
            elseif(preg_match('/^([-]?)[0]*([1-9][0-9]*)([^0-9].*)*$/', $string, $match)) return $match[1].$match[2];
            else return 0;
        } else {
            return intval($string);
        }
    }
   function is_mounted($mountpoint){
      //$cmd = 'df 2>/dev/null | grep " '.$mountpoint.'$"';
      $cmd = 'mount 2>/dev/null | grep " on '.$mountpoint.' type "';
      exec($cmd, $output, $return_var);
      return $return_var == 0 ? true : false;
   }
}
?>