From 27bcdc62f97076503c095fce7bae01a38fad7f60 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sun, 1 Jul 2007 05:32:04 +0000 Subject: beautify some warning messages git-svn-id: file:///var/lib/svn/phpfspot/trunk@149 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 21 ++++++++++++++------- resources/green_info.png | Bin 0 -> 29404 bytes 2 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 resources/green_info.png diff --git a/phpfspot.class.php b/phpfspot.class.php index 36662fd..4468a5e 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -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!
\n"; + $this->_warning("Photo ". $orig_path ." does not exist!
\n"); } if(!is_readable($orig_path)) { - print "Photo ". $orig_path ." is not readable for user ". get_current_user() ."
\n"; + $this->_warning("Photo ". $orig_path ." is not readable for user ". get_current_user() ."
\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!
\n"; + $this->_warning("Photo ". $orig_path ." does not exist!
\n"); return; } if(!is_readable($orig_path)) { - print "Photo ". $orig_path ." is not readable for user ". get_current_user() ."
\n"; + $this->_warning("Photo ". $orig_path ." is not readable for user ". get_current_user() ."
\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 "\"warning\"\n"; + print $text; + + } // _warning() + } ?> diff --git a/resources/green_info.png b/resources/green_info.png new file mode 100644 index 0000000..99c36f6 Binary files /dev/null and b/resources/green_info.png differ -- cgit v1.2.3-18-g5258