[3609] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Plugin Name: PY GVideo |
---|
[3697] | 4 | Version: auto |
---|
| 5 | Description: Adds some videos from Google Video, Dailymotion, Youtube, Wideo, Vimeo or Wat. |
---|
[3609] | 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=136 |
---|
| 7 | Author: PYwaie & P@t |
---|
| 8 | */ |
---|
| 9 | |
---|
| 10 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 11 | define('GVIDEO_DIR' , basename(dirname(__FILE__))); |
---|
| 12 | define('GVIDEO_PATH' , PHPWG_PLUGINS_PATH . GVIDEO_DIR . '/'); |
---|
| 13 | |
---|
| 14 | global $conf, $py_addext; |
---|
[3697] | 15 | $py_addext = array("gvideo", "dm", "ytube", "wideo", "vimeo", "wat"); |
---|
[3609] | 16 | $conf['file_ext'] = array_merge($conf['file_ext'], $py_addext); |
---|
| 17 | |
---|
| 18 | function gvideoadd($content) |
---|
| 19 | { |
---|
| 20 | global $page, $picture, $template, $py_addext, $conf; |
---|
| 21 | |
---|
| 22 | if (!isset($picture['current']['file'])) |
---|
| 23 | { |
---|
| 24 | return $content; |
---|
| 25 | } |
---|
| 26 | $extension = strtolower(get_extension($picture['current']['file'])); |
---|
| 27 | if (!in_array($extension, $py_addext) or $page['slideshow']) |
---|
| 28 | { |
---|
| 29 | return $content; |
---|
| 30 | } |
---|
| 31 | include_once( GVIDEO_PATH . '/gvideo.php'); |
---|
| 32 | return $content; |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | |
---|
[8237] | 36 | function py_mimetype($location, $element_info) |
---|
[3609] | 37 | { |
---|
[8237] | 38 | if ( empty( $element_info['tn_ext'] ) ) |
---|
| 39 | { |
---|
| 40 | global $py_addext; |
---|
| 41 | $extension = strtolower(get_extension($element_info['path'])); |
---|
| 42 | if (in_array($extension, $py_addext)) |
---|
| 43 | { |
---|
| 44 | $location= 'plugins/' . GVIDEO_DIR . '/mimetypes/' . $extension . '.png'; |
---|
| 45 | } |
---|
| 46 | } |
---|
| 47 | return $location; |
---|
[3609] | 48 | } |
---|
| 49 | |
---|
| 50 | if (script_basename() == 'admin') |
---|
| 51 | { |
---|
| 52 | add_event_handler('get_admin_plugin_menu_links', 'gvideo_admin_menu'); |
---|
| 53 | |
---|
| 54 | function gvideo_admin_menu($menu) |
---|
| 55 | { |
---|
| 56 | array_push($menu, array( |
---|
| 57 | 'NAME' => 'PY GVideo', |
---|
| 58 | 'URL' => get_admin_plugin_menu_link( GVIDEO_PATH . '/admin/pywaie_admin.php'))); |
---|
| 59 | return $menu; |
---|
| 60 | } |
---|
| 61 | } |
---|
| 62 | |
---|
| 63 | add_event_handler('render_element_content', 'gvideoadd'); |
---|
[8237] | 64 | add_event_handler('get_thumbnail_location', 'py_mimetype', 60, 2); |
---|
[3609] | 65 | |
---|
[3296] | 66 | ?> |
---|