Exemplo n.º 1
0
 public function file($info)
 {
     $info['options']['extra'] = '<p class="form_inner_form"><input type="checkbox" name="' . htmlspecialchars($name) . '_crop" id="' . htmlspecialchars($name) . '_crop" checked="checked" value="yes" /><label for="' . htmlspecialchars($name) . '_crop">Crop After Upload</label></p>';
     $out = $this->basic_input($info);
     // Located in libraries folder
     $gd = new Gd();
     // Check if there is already and image / file in place and display it to the user
     if ($gd->load_file('./files/uploads/large/' . $info['value'])) {
         $out .= '<span class="current">Current Image: <a href="' . WEB_ROOT . 'files/uploads/large/' . htmlspecialchars($info['value']) . '" rel="facebox">' . htmlspecialchars($info['value']) . '</a></span>';
     } else {
         $out .= '<span class="current">Current File: <a href="' . WEB_ROOT . 'files/uploads/original/' . htmlspecialchars($info['value']) . '" rel="external">' . htmlspecialchars($info['value']) . '</a></span>';
     }
     return $out;
 }