Passed
Push — master ( 8fa3ac...b4f10c )
by Kishan
02:13
created
index.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 );
25 25
 $userData = $response->getGraphNode()->asArray();
26 26
 $_SESSION['userid'] = $userData['id'];
27
-$_SESSION['email']=$userData['email'];
27
+$_SESSION['email'] = $userData['email'];
28 28
 ?>
29 29
 
30 30
 <!DOCTYPE html>
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                     <img src="<?php echo $userData['picture']['url'] ?>" alt="Profile Picture" class="circle">
95 95
                   </a>
96 96
                   <a href="#">
97
-                    <span class="name white-text"><?php echo $userData['first_name'] ." ".$userData['last_name'] ?></span>
97
+                    <span class="name white-text"><?php echo $userData['first_name'] . " " . $userData['last_name'] ?></span>
98 98
                   </a>
99 99
                   <a href="#">
100 100
                     <span class="email white-text"><?php echo $userData['email'] ?></span>
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                     <div class="profilepic">
128 128
                       <img style="margin-top: 100px;" height="100" width="100" src="<?php echo $userData['picture']['url'] ?>" alt="Profile Picture" class="materialboxed circle responsive-img">
129 129
                     </div>
130
-                    <p class="center teal-text" style="font-size: 25px;"><strong><?php echo $userData['first_name'] ." ". $userData['last_name'] ?></strong><p>            
130
+                    <p class="center teal-text" style="font-size: 25px;"><strong><?php echo $userData['first_name'] . " " . $userData['last_name'] ?></strong><p>            
131 131
                   <center>
132 132
                 </div>
133 133
                 <div class="col l6 profile-detaile">
@@ -174,13 +174,13 @@  discard block
 block discarded – undo
174 174
                         </div>
175 175
                         <div class="card-content">
176 176
                           <center>
177
-                              <button type="button" rel="<?php echo $albumm['id'].','.$albumm['name'];?>" class="btn waves-effect waves-light red single-download"><i class="material-icons">get_app</i></button><br/><br/>
178
-                              <button type="button" rel="<?php echo $albumm['id'].','.$albumm['name'];?>" class="btn waves-effect waves-light single-export">Export Album</button><br/><br/>
177
+                              <button type="button" rel="<?php echo $albumm['id'] . ',' . $albumm['name']; ?>" class="btn waves-effect waves-light red single-download"><i class="material-icons">get_app</i></button><br/><br/>
178
+                              <button type="button" rel="<?php echo $albumm['id'] . ',' . $albumm['name']; ?>" class="btn waves-effect waves-light single-export">Export Album</button><br/><br/>
179 179
                               
180
-                              <input type="checkbox"  class="select-album" value="<?php echo $albumm['id'].','.$albumm['name'];?>" class="filled-in" />
180
+                              <input type="checkbox"  class="select-album" value="<?php echo $albumm['id'] . ',' . $albumm['name']; ?>" class="filled-in" />
181 181
                               <br/>
182
-                              <span class="card-title"><?php echo $albumm['name'];?></span>
183
-                              <button type="button" rel="<?php echo $albumm['id'].','.$albumm['name'];?>" class="btn waves-effect waves-light blue move-single-album">Move to Drive</button>
182
+                              <span class="card-title"><?php echo $albumm['name']; ?></span>
183
+                              <button type="button" rel="<?php echo $albumm['id'] . ',' . $albumm['name']; ?>" class="btn waves-effect waves-light blue move-single-album">Move to Drive</button>
184 184
                               <br/>
185 185
                               <!-- <form id="uploadimage" action="" method="post" enctype="multipart/form-data">
186 186
                                 <center>
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     </div>
240 240
 
241 241
     <?php
242
-    $google_access_token= "";
242
+    $google_access_token = "";
243 243
     if (isset($_SESSION['google_access_token'])) {
244 244
         $google_access_token = $_SESSION['google_access_token'];
245 245
     } 
Please login to merge, or discard this patch.
Braces   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -245,7 +245,12 @@
 block discarded – undo
245 245
     } 
246 246
     ?>
247 247
 
248
-    <div id="" class="g-access-token"><?php if ($google_access_token) echo "Hello"; else echo ""; ?></div>
248
+    <div id="" class="g-access-token"><?php if ($google_access_token) {
249
+    echo "Hello";
250
+} else {
251
+    echo "";
252
+}
253
+?></div>
249 254
 
250 255
     <!-- Footer -->
251 256
 
Please login to merge, or discard this patch.
slider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     foreach ($albums as $album) {
28 28
         $albumUrl = $album['images'][0]['source'];
29 29
         $slides .= '<div class="mySlides fade">';
30
-        $slides .= '<img src="'. $albumUrl .'" style="width:100%; height: 450px"></div>';
30
+        $slides .= '<img src="' . $albumUrl . '" style="width:100%; height: 450px"></div>';
31 31
     }
32 32
     echo $slides;
33 33
 }
Please login to merge, or discard this patch.
google_drive/g-callback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND
20 20
  */
21 21
 require_once 'gClient.php';
22
-$gClient =new CreateGoogleClient();
22
+$gClient = new CreateGoogleClient();
23 23
 $client = $gClient->createClient();
24 24
 
25 25
 if (!isset($_GET['code'])) {
Please login to merge, or discard this patch.
google_drive/google_login.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,10 +19,10 @@  discard block
 block discarded – undo
19 19
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND
20 20
  */
21 21
 ini_set('max_execution_time', 999999);
22
-require_once __DIR__.'/gClient.php';
22
+require_once __DIR__ . '/gClient.php';
23 23
 require_once "../fb-callback.php";
24 24
 
25
-$gClient =new CreateGoogleClient();
25
+$gClient = new CreateGoogleClient();
26 26
 $client = $gClient->createClient();
27 27
 
28 28
 if (isset($_SESSION['google_access_token']) && $_SESSION['google_access_token']) {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         $count = 1;
75 75
         foreach ($resultAlbum as $images) {
76 76
             $url = $images['images'];
77
-            $img = $count.".jpeg";
77
+            $img = $count . ".jpeg";
78 78
             $folderId = $SubFolder->id;
79 79
             $fileMetadata = new Google_Service_Drive_DriveFile(
80 80
                 array(
@@ -89,14 +89,14 @@  discard block
 block discarded – undo
89 89
                     'data' => $fileContent, 'mimeType' => 'image/jpeg',
90 90
                     'uploadType' => 'multipart', 'fields' => 'id')
91 91
                 );
92
-            }catch (Exception $e) {
92
+            } catch (Exception $e) {
93 93
                 print "An error occurred: " . $e->getMessage();
94 94
             }
95 95
             $count++;
96 96
         }
97 97
     }
98 98
 
99
-    function getAlbum($fb,$arr_alb,$i)
99
+    function getAlbum($fb, $arr_alb, $i)
100 100
     {
101 101
         global $main_arr;
102 102
         foreach ($arr_alb as $graphNode) {
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             $i++;
105 105
         }
106 106
         $arr_alb_ar = $fb->next($arr_alb);
107
-        if(!empty($arr_alb_ar)) {
107
+        if (!empty($arr_alb_ar)) {
108 108
             getAlbum($fb, $arr_alb_ar, $i);
109 109
         }
110 110
         return $main_arr;
Please login to merge, or discard this patch.
download-album.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     $album_name, 
45 45
     $fb
46 46
 ) {
47
-    $album_directory = $album_download_directory.$album_name;
47
+    $album_directory = $album_download_directory . $album_name;
48 48
     if (!file_exists($album_directory)) {
49 49
          mkdir($album_directory, 0777);
50 50
     }
Please login to merge, or discard this patch.