source: extensions/stripped_black_bloc/admin/maintain.inc.php @ 12048

Last change on this file since 12048 was 12048, checked in by flop25, 13 years ago

adding an option to create big thumbnails periodically : new class css, admin option
changing timthumb to phpThumb.php : it's safer and works according document_root
=> new keys to translate

File size: 832 bytes
Line 
1<?php
2
3function theme_activate($id, $version, &$errors)
4{
5  global $prefixeTable, $conf;
6
7  if (!isset($conf['stripped_black_bloc']))
8  {
9    $config = array(
10  'color_main'            => 'E6554F',
11  'column_width'            => 170,
12  'thumbnail_width'           => 150,
13        'every_x'                                               => 20,
14        'starting_to'                                           => 1,
15 'thumbnail'         => 'piwigo' //generated - auto - piwigo
16      );
17     
18    $query = "
19INSERT INTO " . CONFIG_TABLE . " (param,value,comment)
20VALUES ('stripped_black_bloc' , '".pwg_db_real_escape_string(serialize($config))."' , 'color_main#column_width#thumbnail_width#thumbnail(generated - auto - piwigo)');";
21    pwg_query($query);
22  }
23}
24
25function theme_deactivate()
26{
27  global $prefixeTable;
28
29  $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="stripped_black_bloc" ;';
30  pwg_query($query);
31}
32
33?>
Note: See TracBrowser for help on using the repository browser.