1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/modules/embed_videos/helpers/embed_videos.php

57 lines
2.4 KiB
PHP
Raw Permalink Normal View History

2010-08-26 16:58:48 +00:00
<?php defined("SYSPATH") or die("No direct script access.");
/**
* Gallery - a web based photo album viewer and editor
2013-01-21 06:24:24 +00:00
* Copyright (C) 2000-2013 Bharat Mediratta
2010-08-26 16:58:48 +00:00
*
* 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.
*/
/**
2010-08-27 02:14:13 +00:00
* This is the API for handling embedded videos.
2010-08-26 16:58:48 +00:00
*
* Note: by design, this class does not do any permission checking.
*/
class embed_videos_Core {
2010-08-27 02:14:13 +00:00
2010-08-26 16:58:48 +00:00
static function get_add_form($album) {
$form = new Forge("embedded_videos/create/{$album->id}", "", "post", array("id" => "g-add-embed-form"));
$group = $form->group("add_embedded_video")
2010-08-27 02:14:13 +00:00
->label(t("Add embedded video to %album_title", array("album_title" => $album->title)));
2010-08-26 16:58:48 +00:00
$group->input("title")->label(t("Title"))
2010-08-27 02:14:13 +00:00
->error_messages("required", t("You must provide a title"))
->error_messages("length", t("Your title is too long"));
$group->input("video_url")->label(t("Video URL"))
2010-08-27 02:14:13 +00:00
->error_messages(
2010-08-26 16:58:48 +00:00
"conflict", t("There is already a movie with this ID"))
2010-08-27 05:57:20 +00:00
->error_messages("required", t("You must provide a URL"))
->error_messages("invalid_id", t("Invalid URL"));
2010-08-26 16:58:48 +00:00
$group->textarea("description")->label(t("Description"));
$group->input("slug")->label(t("Internet Address"))
2010-08-27 02:14:13 +00:00
->error_messages(
2010-08-26 16:58:48 +00:00
"conflict", t("There is already a movie, photo or album with this internet address"))
2010-08-27 02:14:13 +00:00
->error_messages(
2010-08-26 16:58:48 +00:00
"not_url_safe",
2010-08-27 02:14:13 +00:00
t("The internet address should contain only letters, numbers, hyphens and underscores"))
->error_messages("required", t("You must provide an internet address"))
->error_messages("length", t("Your internet address is too long"));
2010-08-26 16:58:48 +00:00
module::event("item_add_form", $album, $form);
2010-08-26 16:58:48 +00:00
$group = $form->group("buttons")->label("");
$group->submit("")->value(t("Add"));
return $form;
}
}