]> source.dussan.org Git - nextcloud-server.git/commitdiff
apply coding style
authorThomas Mueller <thomas.mueller@tmit.eu>
Tue, 28 Aug 2012 22:36:27 +0000 (00:36 +0200)
committerThomas Mueller <thomas.mueller@tmit.eu>
Tue, 28 Aug 2012 22:36:27 +0000 (00:36 +0200)
apps/files/ajax/autocomplete.php

index e504bb24bf8b8ef6f06413fc7a00c7e9914169e6..fae38368a85fc0705871090e49442fc9c8bc0e73 100644 (file)
@@ -11,20 +11,20 @@ OCP\JSON::checkLoggedIn();
 $query = $_GET['term'];
 $dirOnly=(isset($_GET['dironly']))?($_GET['dironly']=='true'):false;
 
-if($query[0]!='/'){
+if($query[0]!='/') {
        $query='/'.$query;
 }
 
-if(substr($query,-1,1)=='/'){
+if(substr($query, -1, 1)=='/') {
        $base=$query;
-}else{
+} else {
        $base=dirname($query);
 }
 
-$query=substr($query,strlen($base));
+$query=substr($query, strlen($base));
 
-if($base!='/'){
-       $query=substr($query,1);
+if($base!='/') {
+       $query=substr($query, 1);
 }
 $queryLen=strlen($query);
 $query=strtolower($query);
@@ -33,17 +33,17 @@ $query=strtolower($query);
 
 $files=array();
 
-if(OC_Filesystem::file_exists($base) and OC_Filesystem::is_dir($base)){
+if(OC_Filesystem::file_exists($base) and OC_Filesystem::is_dir($base)) {
        $dh = OC_Filesystem::opendir($base);
-       if($dh){
-               if(substr($base,-1,1)!='/'){
+       if($dh) {
+               if(substr($base, -1, 1)!='/') {
                        $base=$base.'/';
                }
                while (($file = readdir($dh)) !== false) {
-                       if ($file != "." && $file != ".."){
-                               if(substr(strtolower($file),0,$queryLen)==$query){
+                       if ($file != "." && $file != "..") {
+                               if(substr(strtolower($file), 0, $queryLen)==$query) {
                                        $item=$base.$file;
-                                       if((!$dirOnly or OC_Filesystem::is_dir($item))){
+                                       if((!$dirOnly or OC_Filesystem::is_dir($item))) {
                                                $files[]=(object)array('id'=>$item,'label'=>$item,'name'=>$item);
                                        }
                                }