Ignore:
Timestamp:
Mar 17, 2010, 1:48:38 AM (14 years ago)
Author:
plg
Message:

feature 1514: new screen to manage installed themes; activate, deactivate,
delete, set as default.

plugins.class.php was merged back to a state it doesn't manage themes at all.
themes.class.php was created instead, from a duplication of plugins.class.php
and strongly modified then.

feature 1507: the display of available themes is now much more "graphic".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/piwigo_structure-mysql.sql

    r5123 r5153  
    294294
    295295--
     296-- Table structure for table `piwigo_themes`
     297--
     298
     299DROP TABLE IF EXISTS `piwigo_themes`;
     300CREATE TABLE `piwigo_themes` (
     301  `id` varchar(64) NOT NULL default '',
     302  `version` varchar(64) NOT NULL default '0',
     303  `name` varchar(64) default NULL,
     304  PRIMARY KEY  (`id`)
     305) TYPE=MyISAM;
     306
     307--
    296308-- Table structure for table `piwigo_upgrade`
    297309--
Note: See TracChangeset for help on using the changeset viewer.