Ignore:
Timestamp:
Jan 14, 2013, 8:07:25 PM (11 years ago)
Author:
flop25
Message:

optimal size
switchlanguage style

todo lang file to spread

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/hr_glass_xl/themeconf.inc.php

    r16380 r20153  
    1616  'activable'     => true,
    1717);
    18 // Need upgrade?
    19   if (!isset($conf['hr_glass_xl']))
    20   {
    21     $config = array(
    22       'home'       => true,
    23       'categories' => true,
    24       'picture'    => false,
    25       'other'      => true,
    26       );
    27      
    28     $query = '
     18//// [update check]
     19if (!isset($conf['hr_glass_xl']))
     20{
     21  $config = array(
     22    'home'       => true,
     23    'categories' => true,
     24    'picture'    => false,
     25    'other'      => true,
     26    );
     27   
     28  $query = '
    2929INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
    3030VALUES ("hr_glass_xl" , "'.pwg_db_real_escape_string(serialize($config)).'" , "hr_glass_xl parameters");';
    3131
     32  pwg_query($query);
     33  load_conf_from_db();
     34}
     35if (isset($conf['derivatives']))  {   
     36  $new = @unserialize($conf['derivatives']);
     37  if(!isset($new['d']['Optimal']))
     38  {
     39    $new['d']['Optimal']=ImageStdParams::get_custom(900,9999);
     40    $query = '
     41        UPDATE '.CONFIG_TABLE.'
     42        SET value="'.addslashes(serialize($new)).'"
     43        WHERE param = "derivatives"
     44        LIMIT 1';
    3245    pwg_query($query);
    3346    load_conf_from_db();
    3447  }
     48}//// [/update check]
     49
     50
    3551
    3652// thx to P@t
     
    119135
    120136/************************************ picture.tpl ************************************/
    121 add_event_handler('render_element_content', 'hr_glass_xl_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
     137//add_event_handler('render_element_content', 'hr_glass_xl_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
    122138function hr_glass_xl_picture($content, $element_info)
    123139{
Note: See TracChangeset for help on using the changeset viewer.