source: extensions/piclens/piclenswall-rss.php @ 3417

Last change on this file since 3417 was 3410, checked in by tiico, 15 years ago
File size: 1.0 KB
Line 
1<?php
2/*
3 * 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 piclenswall-rss.php  *********/
11 
12define('PHPWG_ROOT_PATH','../../');
13if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
14
15
16include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
17include_once(PHPWG_ROOT_PATH.'include/section_init.inc.php');
18
19// +-----------------------------------------------------------------------+
20// | Check Access and exit when user status is not ok                      |
21// +-----------------------------------------------------------------------+
22check_status(ACCESS_GUEST);
23
24// Load Piclens
25$obj = new Piclens();
26$obj->load_config();
27
28// Parametrages du mur 3D (parametres communs ou differents)
29$piclenswallfeed = ( ($obj->my_config['piclens_wall_specif'] != 'common') ? true : false);
30
31// Generate rss
32include(PICLENS_PATH.'generate_rss.php');
33
34?>
Note: See TracBrowser for help on using the repository browser.