diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2014-01-14 23:37:41 +0000 | 
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2014-01-14 23:37:41 +0000 | 
| commit | 2b9b6991b28cada6abf4af73f9286495358a3839 (patch) | |
| tree | 256eff86095296ab95010b0444c92cd48a518dc1 /modules/movie_overlay | |
| parent | 75451124fe8856e832b49f04f038f7ec6f141350 (diff) | |
Added a module that displays a play button icon over movie thumbnails so people know they are actually movies and not just photos.HEADmaster
Diffstat (limited to 'modules/movie_overlay')
19 files changed, 294 insertions, 0 deletions
diff --git a/modules/movie_overlay/controllers/admin_movie_overlay.php b/modules/movie_overlay/controllers/admin_movie_overlay.php new file mode 100644 index 00000000..c157a937 --- /dev/null +++ b/modules/movie_overlay/controllers/admin_movie_overlay.php @@ -0,0 +1,73 @@ +<?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 Admin_Movie_overlay_Controller extends Admin_Controller { +  public function index() { +    print $this->_get_view(); +  } + +  public function handler() { +    access::verify_csrf(); + +    $form = $this->_get_form(); +    if ($form->validate()) { +      module::set_var( +        "movie_overlay", "icon", $form->movie_overlay->icon->value); +      module::set_var( +        "movie_overlay", "trans", $form->movie_overlay->trans->value); +	  module::set_var( +	    "movie_overlay", "time", $form->movie_overlay->time->value); +		 +      message::success(t("Your settings have been saved.")); +      url::redirect("admin/movie_overlay"); +    } + +    print $this->_get_view($form); +  } + +  private function _get_view($form=null) { +    $v = new Admin_View("admin.html"); +    $v->content = new View("admin_movie_overlay.html"); +    $v->content->form = empty($form) ? $this->_get_form() : $form; +    return $v; +  } + +  private function _get_form() { +    for ($i = 1; $i <= 10; $i++) { +      $range[$i] = "$i"; +	} +	for ($i = 5; $i <= 95; $i+=5) { +      $range2[$i] = "$i"; +	} +    $form = new Forge("admin/movie_overlay/handler", "", "post", array("id" => "g-admin-form")); +    $group = $form->group("movie_overlay"); +    $group->dropdown("icon")->label(t("Choose the icon of the movie play button")) +      	->options($range) +      	->selected(module::get_var("movie_overlay", "icon", "1")); +    $group->dropdown("trans")->label(t("Choose the visability of the play button.")) +      	->options($range2) +      	->selected(module::get_var("movie_overlay", "trans", "90")); +	$group->checkbox("time")->label(t("Show durration of movie (ffmpeg required)")) +		->checked(module::get_var("movie_overlay", "time", "0")); +		 +    $group->submit("submit")->value(t("Save")); + +    return $form; +  } +}
\ No newline at end of file diff --git a/modules/movie_overlay/controllers/movie_overlay.php b/modules/movie_overlay/controllers/movie_overlay.php new file mode 100644 index 00000000..5a7e4733 --- /dev/null +++ b/modules/movie_overlay/controllers/movie_overlay.php @@ -0,0 +1,22 @@ +<?php defined("SYSPATH") or die("No direct script access.");/** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2011 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 movie_overlay_Controller extends Controller { +  static function get_duration_manual() { +  } +} diff --git a/modules/movie_overlay/helpers/movie_overlay_event.php b/modules/movie_overlay/helpers/movie_overlay_event.php new file mode 100644 index 00000000..c0edf9bd --- /dev/null +++ b/modules/movie_overlay/helpers/movie_overlay_event.php @@ -0,0 +1,28 @@ +<?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 movie_overlay_event_Core { +  static function admin_menu($menu, $theme) { +    $menu->get("settings_menu") +      ->append(Menu::factory("link") +               ->id("movie_overly_menu") +               ->label(t("Movie overlay")) +               ->url(url::site("admin/movie_overlay"))); +  } +}
\ No newline at end of file diff --git a/modules/movie_overlay/helpers/movie_overlay_installer.php b/modules/movie_overlay/helpers/movie_overlay_installer.php new file mode 100644 index 00000000..d2124957 --- /dev/null +++ b/modules/movie_overlay/helpers/movie_overlay_installer.php @@ -0,0 +1,33 @@ +<?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 movie_overlay_installer { +  static function install() { +    module::set_version("movie_overlay", 3); +  } +  static function upgrade($version) { +    if ($version < 3) { +      module::set_version("movie_overlay", $version = 3); +    } +  }   +  static function deactivate() { +  } +  static function uninstall() { +  } +} diff --git a/modules/movie_overlay/helpers/movie_overlay_theme.php b/modules/movie_overlay/helpers/movie_overlay_theme.php new file mode 100644 index 00000000..531cecd5 --- /dev/null +++ b/modules/movie_overlay/helpers/movie_overlay_theme.php @@ -0,0 +1,93 @@ +<?php defined("SYSPATH") or die("No direct script access."); +/** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2010 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 movie_overlay_theme_Core { +  static function get_movie_time($item) { +    $ffmpeg = movie::find_ffmpeg(); +    if (empty($ffmpeg)) { +      return t("00:00"); +    } +    $cmd = escapeshellcmd($ffmpeg) . " -i " . escapeshellarg($item->file_path()) . " 2>&1"; +    $result = `$cmd`; +    if (preg_match("/Duration: (\d+):(\d+):(\d+\.\d+)/", $result, $regs)) { +      return 3600 * $regs[1] + 60 * $regs[2] + $regs[3]; +    } else if (preg_match("/duration.*?:.*?(\d+)/", $result, $regs)) { +      return $regs[1]; +    } else { +      return '00'; +    } +  } +  static function head($theme, $child) { +	if ($theme->page_type == "collection") { +	$trans 		= module::get_var("movie_overlay", "trans"); +	return "\t<style type=\"text/css\">  +	.g-movie-thumb { +	  position:relative; +	  margin: auto; +	} +	.g-movie-thumb .g-movie-time { +	  position:absolute; +	  -moz-border-radius: 5px; +	  border-radius: 5px; +	  background-color: #000000; +	  background-color:rgb(0,0,0); +	  background-color:rgba(0,0,0,0.6); +	  filter: alpha(opacity=60); +	  color: #fff; +	  height: 1.5em; +	  font-weight:bold; +	  text-align:right; +	  margin-right: 4px; +	  margin-bottom: 3px; +	  padding: 3px 3px 0px 5px; +	  right:0px; +	} +	.g-movie-thumb .g-description { +	  margin-top: -6px!important; +	  margin-left: -5px!important; +	} +	.g-movie-thumb .g-context-menu { +	  margin-top: -6px!important; +	  margin-left: -5px!important; +	} +	</style>"; +	} +  } +  static function thumb_top($theme, $child) { +	if ($child->type == "movie") { +	return ("<div class=\"g-movie-thumb\" style=\"width: {$child->thumb_width}px;\">\n"); +	} +  }   +  static function thumb_bottom($theme, $child) { +	if ($child->type == "movie") { +	  $view = new View("movie_thumb_bottom.html"); +	  // pass some variable to the view  +	  $view->url = 			$child->url(); +	  $view->top = 			round($child->thumb_height / 2 - 20); +	  $view->texttime_top =	round($child->thumb_height - 25);  // position the movie duration from the top as some themes add stuff below the thumb +	  $view->left = 		round($child->thumb_width / 2 - 20); +	  $view->images_url = 	url::file("modules/movie_overlay/images"); +	  $view->icon = 		module::get_var("movie_overlay", "icon"); +	  $view->trans = 		module::get_var("movie_overlay", "trans"); +	  $view->movie_time = 	number_format(movie_overlay_theme_Core::get_movie_time($child), 2); +	  return $view; +	} +  } +   +} diff --git a/modules/movie_overlay/images/1.png b/modules/movie_overlay/images/1.png Binary files differnew file mode 100644 index 00000000..f25bc1d5 --- /dev/null +++ b/modules/movie_overlay/images/1.png diff --git a/modules/movie_overlay/images/10.png b/modules/movie_overlay/images/10.png Binary files differnew file mode 100644 index 00000000..a9619094 --- /dev/null +++ b/modules/movie_overlay/images/10.png diff --git a/modules/movie_overlay/images/2.png b/modules/movie_overlay/images/2.png Binary files differnew file mode 100644 index 00000000..037b703d --- /dev/null +++ b/modules/movie_overlay/images/2.png diff --git a/modules/movie_overlay/images/3.png b/modules/movie_overlay/images/3.png Binary files differnew file mode 100644 index 00000000..3e7b84df --- /dev/null +++ b/modules/movie_overlay/images/3.png diff --git a/modules/movie_overlay/images/4.png b/modules/movie_overlay/images/4.png Binary files differnew file mode 100644 index 00000000..d446bf24 --- /dev/null +++ b/modules/movie_overlay/images/4.png diff --git a/modules/movie_overlay/images/5.png b/modules/movie_overlay/images/5.png Binary files differnew file mode 100644 index 00000000..ca7a66ce --- /dev/null +++ b/modules/movie_overlay/images/5.png diff --git a/modules/movie_overlay/images/6.png b/modules/movie_overlay/images/6.png Binary files differnew file mode 100644 index 00000000..37fbb76d --- /dev/null +++ b/modules/movie_overlay/images/6.png diff --git a/modules/movie_overlay/images/7.png b/modules/movie_overlay/images/7.png Binary files differnew file mode 100644 index 00000000..1205d416 --- /dev/null +++ b/modules/movie_overlay/images/7.png diff --git a/modules/movie_overlay/images/8.png b/modules/movie_overlay/images/8.png Binary files differnew file mode 100644 index 00000000..76dde5dc --- /dev/null +++ b/modules/movie_overlay/images/8.png diff --git a/modules/movie_overlay/images/9.png b/modules/movie_overlay/images/9.png Binary files differnew file mode 100644 index 00000000..fdac1030 --- /dev/null +++ b/modules/movie_overlay/images/9.png diff --git a/modules/movie_overlay/images/blank.gif b/modules/movie_overlay/images/blank.gif Binary files differnew file mode 100644 index 00000000..1d11fa9a --- /dev/null +++ b/modules/movie_overlay/images/blank.gif diff --git a/modules/movie_overlay/module.info b/modules/movie_overlay/module.info new file mode 100644 index 00000000..2d6c5bf3 --- /dev/null +++ b/modules/movie_overlay/module.info @@ -0,0 +1,7 @@ +name = "Movie overlay" +description = "Overlay a graphic & movie duration over the thumbnail to signify a movie. " +version = 3 +author_name = "floridave" +author_url = "http://codex.gallery2.org/User:Floridave" +info_url = "http://codex.gallery2.org/Gallery3:Modules:movie_overlay" +discuss_url = "http://gallery.menalto.com/forum_module_movie_overlay"
\ No newline at end of file diff --git a/modules/movie_overlay/views/admin_movie_overlay.html.php b/modules/movie_overlay/views/admin_movie_overlay.html.php new file mode 100644 index 00000000..a0b1a02a --- /dev/null +++ b/modules/movie_overlay/views/admin_movie_overlay.html.php @@ -0,0 +1,26 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?>   +<div id="g-admin-code-block"> +  <h2><?= t("Movie overly page administration") ?></h2> +	<table  border="1" bordercolor="#000000"  +			style="background-color:#FFFFFF" width="550px"  +			cellpadding="1" cellspacing="1"> +	<tr> +	    <td>Icon:</td> +		<td><img src="<?= url::file("modules/movie_overlay/images/1.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/2.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/3.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/4.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/5.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/6.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/7.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/8.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/9.png") ?>" /></td> +		<td><img src="<?= url::file("modules/movie_overlay/images/10.png") ?>" /></td> +	</tr> +	<tr> +		<td>Number:</td><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td> +		<td>6</td><td>7</td><td>8</td><td>9</td><td>10</td> +	</tr> +	</table> +  <?= $form ?> +</div> diff --git a/modules/movie_overlay/views/movie_thumb_bottom.html.php b/modules/movie_overlay/views/movie_thumb_bottom.html.php new file mode 100644 index 00000000..376b92ee --- /dev/null +++ b/modules/movie_overlay/views/movie_thumb_bottom.html.php @@ -0,0 +1,12 @@ +<?php defined("SYSPATH") or die("No direct script access.") ?> +<a href="<?= $url ?>" style="text-decoration: none"> +<span style="position:absolute; top:<?= $top ?>px; +left:<?= $left ?>px; height: 48px; width: 48px; +background-image:url('<?= $images_url ?>/<?= $icon ?>.png'); +opacity:0.<?= $trans ?>; filter:alpha(opacity=<?= $trans ?>);"> +</span> +<? if (module::get_var("movie_overlay", "time")) : ?> +  <span class="g-movie-time" style="top:<?= $texttime_top ?>px;">▷ <?= $movie_time ?></span> +<? endif ?> +</a> +</div>  | 
