beautify some warning messages
authorAndreas Unterkircher <unki@netshadow.at>
Sun, 1 Jul 2007 05:32:04 +0000 (05:32 +0000)
committerAndreas Unterkircher <unki@netshadow.at>
Sun, 1 Jul 2007 05:32:04 +0000 (05:32 +0000)
git-svn-id: file:///var/lib/svn/phpfspot/trunk@149 fa6a889d-dae6-447d-9e79-4ba9a3039384

phpfspot.class.php
resources/green_info.png [new file with mode: 0644]

index 36662fd27373e7276993963f20f0f02c6b4030d5..4468a5e719b25920fb5a7b61f80ec49dfece20cd 100644 (file)
@@ -138,11 +138,11 @@ class PHPFSPOT {
       $thumb_path = $this->cfg->base_path ."/thumbs/". $this->cfg->photo_width ."_". $this->getMD5($photo);
 
       if(!file_exists($orig_path)) {
-         print "Photo ". $orig_path ." does not exist!<br />\n";
+         $this->_warning("Photo ". $orig_path ." does not exist!<br />\n");
       }
 
       if(!is_readable($orig_path)) {
-         print "Photo ". $orig_path ." is not readable for user ". get_current_user() ."<br />\n";
+         $this->_warning("Photo ". $orig_path ." is not readable for user ". get_current_user() ."<br />\n");
       }
 
       /* If the thumbnail doesn't exist yet, try to create it */
@@ -172,7 +172,7 @@ class PHPFSPOT {
          $this->tmpl->assign('tags', $this->get_photo_tags($photo));
       }
       else {
-         print "Can't open file ". $thumb_path ."\n";
+         $this->_warning("Can't open file ". $thumb_path ."\n");
       }
 
       if($previous_img) {
@@ -479,12 +479,12 @@ class PHPFSPOT {
       $filesize = rand($filesize/1024, 2);
 
       if(!file_exists($orig_path)) {
-         print "Photo ". $orig_path ." does not exist!<br />\n";
+         $this->_warning("Photo ". $orig_path ." does not exist!<br />\n");
          return;
       }
       
       if(!is_readable($orig_path)) {
-         print "Photo ". $orig_path ." is not readable for user ". get_current_user() ."<br />\n";
+         $this->_warning("Photo ". $orig_path ." is not readable for user ". get_current_user() ."<br />\n");
          return;
       }
 
@@ -656,12 +656,12 @@ class PHPFSPOT {
       $full_path = $this->translate_path($details['directory_path'])  ."/". $details['name'];
 
       if(!file_exists($full_path)) {
-         print "File ". $full_path ." does not exist\n";
+         $this->_warning("File ". $full_path ." does not exist\n");
          return;
       }
 
       if(!is_readable($full_path)) {
-         print "File ". $full_path ." is not readable for ". get_current_user() ."\n";
+         $this->_warning("File ". $full_path ." is not readable for ". get_current_user() ."\n");
          return;
       }
 
@@ -903,6 +903,13 @@ class PHPFSPOT {
 
    } // checkifImageSupported()
 
+   public function _warning($text)
+   {
+      print "<img src=\"resources/green_info.png\" alt=\"warning\" />\n";
+      print $text;
+
+   } // _warning()
+
 }
 
 ?>
diff --git a/resources/green_info.png b/resources/green_info.png
new file mode 100644 (file)
index 0000000..99c36f6
Binary files /dev/null and b/resources/green_info.png differ