Current Path : /var/test/www/alh/system/library/journal3/options/ |
Current File : /var/test/www/alh/system/library/journal3/options/image.php |
<?php namespace Journal3\Options; class Image extends Option { protected static function parseValue($value, $data = null) { if (is_file(DIR_IMAGE . $value)) { return $value; } return null; } }