Ignore:
Timestamp:
Jul 20, 2009, 7:35:50 PM (15 years ago)
Author:
tiico
Message:

Add index.php file into directory
Add CHANGELOG and clean header files
Add 'last comments' option for name and descriptions (%ID option)
Add maintain.inc.php for migration to 0.4.x (name and description translation)
Complete Chinese translation (thanks winson)

  • Correct the latests commit (3636 & 3637 were not complete)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/piclens/admin/rssfeed.php

    r3637 r3645  
    22/*
    33 * Plugin Name: CoolIris-Piclens
    4  * Version: 0.3.4
    5  * Description: Cooliris/Piclens activation
    6  * Plugin URI: http://fr.piwigo.org/ext/extension_view.php?eid=234
    7  * Author: Tiico
    8  * Author URI:
    9  * */
    10 /********* Fichier rssfeed.php  *********/
     4 * File :  rssfeed.php 
     5 */
    116
    127
     
    5752  $me->my_config['piclens_rss_desc'] = $_POST['piclens_rss_desc'];
    5853  $me->my_config['piclens_exclude_double'] = isset($_POST['piclens_exclude_double']);
     54  $me->my_config['piclens_maxcomment_nb'] = $_POST['piclens_maxcomment_nb'];
    5955   
    6056
     
    139135}
    140136*/
    141 $template->assign('PICLENS_VIDEO', $me->my_config['piclens_video'] ? 'checked="checked"' : '' );
    142 $template->assign('PICLENS_CAT_VIEW', $me->my_config['piclens_cat_view'] ? 'checked="checked"' : '' );
    143 $template->assign('PICLENS_RSS_NAME', $me->my_config['piclens_rss_name']);
    144 $template->assign('PICLENS_RSS_DESC', $me->my_config['piclens_rss_desc']);
    145 $template->assign('PICLENS_EXCLUDE_DOUBLE', $me->my_config['piclens_exclude_double'] ? 'checked="checked"' : '' );
     137$template->assign(array(
     138        'PICLENS_VIDEO'         =>  $me->my_config['piclens_video'] ? 'checked="checked"' : '',
     139        'PICLENS_CAT_VIEW'      => $me->my_config['piclens_cat_view'] ? 'checked="checked"' : '',
     140        'PICLENS_RSS_NAME'      => $me->my_config['piclens_rss_name'],
     141        'PICLENS_RSS_DESC'      =>  $me->my_config['piclens_rss_desc'],
     142        'PICLENS_EXCLUDE_DOUBLE'        =>  $me->my_config['piclens_exclude_double'] ? 'checked="checked"' : '',
     143        'PICLENS_MAXCOMMENT_NB'         => $me->my_config['piclens_maxcomment_nb'],
     144        ));
    146145
    147146
Note: See TracChangeset for help on using the changeset viewer.