source: extensions/Fotorama/maintain.inc.php @ 29730

Last change on this file since 29730 was 29730, checked in by JanisV, 10 years ago

Added close button

File size: 1.5 KB
Line 
1<?php
2
3defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
4
5class Fotorama_maintain extends PluginMaintain
6{
7  private $installed = false;
8
9  private $default_conf = array(
10    'allowfullscreen' => 'native',
11    'fit' => 'scaledown',
12    'transition' => 'slide',
13    'shadows' => false,
14    'autoplay' => true,
15    'stopautoplayontouch' => false,
16    'loop' => true,
17    'nav' => 'false',
18    'fullscreen_nav' => 'false',
19    'only_fullscreen' => false,
20    'enable_caption' => false,
21    'thumbheight' => 64,
22    'replace_picture' => false,
23    'replace_picture_only_users' => false,
24    'clicktransition_crossfade' => true,
25    'close_button' => false,
26  );
27
28  function __construct($plugin_id)
29  {
30    parent::__construct($plugin_id);
31  }
32
33  function install($plugin_version, &$errors=array())
34  {
35    global $conf;
36
37    if (empty($conf['Fotorama']))
38    {
39      $conf['Fotorama'] = serialize($this->default_conf);
40      conf_update_param('Fotorama', $conf['Fotorama']);
41    }
42    else
43    {
44      $new_conf = is_string($conf['Fotorama']) ? unserialize($conf['Fotorama']) : $conf['Fotorama'];
45
46      $conf['Fotorama'] = serialize($new_conf);
47      conf_update_param('Fotorama', $conf['Fotorama']);
48    }
49   
50    $this->installed = true;
51  }
52
53  function activate($plugin_version, &$errors=array())
54  {
55    if (!$this->installed)
56    {
57      $this->install($plugin_version, $errors);
58    }
59  }
60
61  function deactivate()
62  {
63  }
64
65  function uninstall()
66  {
67    conf_delete_param('Fotorama');
68  }
69}
70
71?>
Note: See TracBrowser for help on using the repository browser.