1
0

Initial Commit of VideoDimensions module.

This commit is contained in:
rWatcher 2009-08-10 01:19:59 -04:00
parent 8fa16f731c
commit a75d99dc1a
3 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,35 @@
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2009 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class videodimensions_event_Core {
static function item_edit_form($item, $form) {
// Retrieve the existing height and width and display it on the form.
$form->edit_item->input("vidheight")->label(t("Video Height"))
->value($item->height);
$form->edit_item->input("vidwidth")->label(t("Video Width"))
->value($item->width);
}
static function item_edit_form_completed($item, $form) {
// Save the new height and width to the database.
$item->height = $form->edit_item->vidheight->value;
$item->width = $form->edit_item->vidwidth->value;
$item->save();
}
}

View File

@ -0,0 +1,27 @@
<?php defined("SYSPATH") or die("No direct script access.");/**
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2009 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class videodimensions_installer {
static function install() {
module::set_version("videodimensions", 1);
}
static function uninstall() {
module::delete("videodimensions");
}
}

View File

@ -0,0 +1,3 @@
name = "VideoDimensions"
description = "Manually edit the dimensions of a video."
version = 1