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 | |
---|
12 | define('PHPWG_ROOT_PATH','../../'); |
---|
13 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
14 | |
---|
15 | |
---|
16 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php'); |
---|
17 | include_once(PHPWG_ROOT_PATH.'include/section_init.inc.php'); |
---|
18 | |
---|
19 | // +-----------------------------------------------------------------------+ |
---|
20 | // | Check Access and exit when user status is not ok | |
---|
21 | // +-----------------------------------------------------------------------+ |
---|
22 | check_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 |
---|
32 | include(PICLENS_PATH.'generate_rss.php'); |
---|
33 | |
---|
34 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.