setField(array("attr" => "photo",
"type" => "file",
"label" => __("Photo", "photo"),
"note" => "(Max. file size: ".ini_get('upload_max_filesize').")"));
if (isset($_GET['action']) and $_GET['action'] == "bookmarklet")
$this->setField(array("attr" => "from_url",
"type" => "text",
"label" => __("From URL?", "photo"),
"optional" => true,
"no_value" => true));
$this->setField(array("attr" => "caption",
"type" => "text_block",
"label" => __("Caption", "photo"),
"optional" => true,
"preview" => true,
"bookmarklet" => "page_link"));
$this->setFilter("caption", array("markup_text", "markup_post_text"));
$this->respondTo("delete_post", "delete_file");
$this->respondTo("filter_post", "filter_post");
$this->respondTo("post_options", "add_option");
$this->respondTo("admin_write_post", "swfupload");
$this->respondTo("admin_edit_post", "swfupload");
if (isset($_GET['url']) and
preg_match("/http:\/\/(www\.)?flickr\.com\/photos\/([^\/]+)\/([0-9]+)/", $_GET['url'])) {
$this->bookmarkletSelected();
$page = get_remote($_GET['url']);
preg_match("/class=\"photoImgDiv\">\nsetField(array("attr" => "from_url",
"type" => "text",
"label" => __("From URL?", "photo"),
"optional" => true,
"value" => $image[1]));
}
if (isset($_GET['url']) and preg_match("/\.(jpg|jpeg|png|gif|bmp)$/", $_GET['url'])) {
$this->bookmarkletSelected();
$this->setField(array("attr" => "from_url",
"type" => "text",
"label" => __("From URL?", "photo"),
"optional" => true,
"value" => $_GET['url']));
}
}
public function swfupload($admin, $post = null) {
if (isset($post) and $post->feather != "photo" or
isset($_GET['feather']) and $_GET['feather'] != "photo")
return;
Trigger::current()->call("prepare_swfupload", "photo", "*.jpg;*.jpeg;*.png;*.gif;*.bmp");
}
public function submit() {
if (!isset($_POST['filename'])) {
if (isset($_FILES['photo']) and $_FILES['photo']['error'] == 0)
$filename = upload($_FILES['photo'], array("jpg", "jpeg", "png", "gif", "bmp"));
elseif (!empty($_POST['from_url']))
$filename = upload_from_url($_POST['from_url'], array("jpg", "jpeg", "png", "gif", "bmp"));
else
error(__("Error"), __("Couldn't upload photo."));
} else
$filename = $_POST['filename'];
return Post::add(array("filename" => $filename,
"caption" => $_POST['caption']),
$_POST['slug'],
Post::check_url($_POST['slug']));
}
public function update($post) {
if (!isset($_POST['filename']))
if (isset($_FILES['photo']) and $_FILES['photo']['error'] == 0) {
$this->delete_file($post);
$filename = upload($_FILES['photo'], array("jpg", "jpeg", "png", "gif", "tiff", "bmp"));
} elseif (!empty($_POST['from_url'])) {
$this->delete_file($post);
$filename = upload_from_url($_POST['from_url'], array("jpg", "jpeg", "png", "gif", "tiff", "bmp"));
} else
$filename = $post->filename;
else {
$this->delete_file($post);
$filename = $_POST['filename'];
}
$post->update(array("filename" => $filename,
"caption" => $_POST['caption']));
}
public function title($post) {
return oneof($post->title_from_excerpt(), $post->filename);
}
public function excerpt($post) {
return $post->caption;
}
public function feed_content($post) {
return self::image_tag($post, 500, 500)."
".$post->caption;
}
public function delete_file($post) {
if ($post->feather != "photo") return;
unlink(MAIN_DIR.Config::current()->uploads_path.$post->filename);
}
public function filter_post($post) {
if ($post->feather != "photo") return;
$post->image = $this->image_tag($post);
}
public function image_tag($post, $max_width = 500, $max_height = null, $more_args = "quality=100") {
$filename = $post->filename;
$config = Config::current();
$alt = !empty($post->alt_text) ? fix($post->alt_text, true) : $filename ;
return '';
}
public function image_link($post, $max_width = 500, $max_height = null, $more_args="quality=100") {
$source = !empty($post->source) ? $post->source : uploaded($post->filename) ;
return ''.$this->image_tag($post, $max_width, $max_height, $more_args).'';
}
public function add_option($options, $post = null) {
if (isset($post) and $post->feather != "photo") return;
if (!isset($_GET['feather']) and Config::current()->enabled_feathers[0] != "photo" or
isset($_GET['feather']) and $_GET['feather'] != "photo") return;
$options[] = array("attr" => "option[alt_text]",
"label" => __("Alt-Text", "photo"),
"type" => "text",
"value" => oneof(@$post->alt_text, ""));
$options[] = array("attr" => "option[source]",
"label" => __("Source", "photo"),
"type" => "text",
"value" => oneof(@$post->source, ""));
$options[] = array("attr" => "from_url",
"label" => __("From URL?", "photo"),
"type" => "text");
return $options;
}
}