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

Last change on this file since 4193 was 3645, checked in by tiico, 15 years ago

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 size: 832 bytes
Line 
1<?php
2/*
3 * Plugin Name: CoolIris-Piclens
4 * File :  piclenswall-rss.php 
5 */
6 
7define('PHPWG_ROOT_PATH','../../');
8if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
9
10
11include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
12include_once(PHPWG_ROOT_PATH.'include/section_init.inc.php');
13
14// +-----------------------------------------------------------------------+
15// | Check Access and exit when user status is not ok                      |
16// +-----------------------------------------------------------------------+
17check_status(ACCESS_GUEST);
18
19// Load Piclens
20$obj = new Piclens();
21$obj->load_config();
22
23// Parametrages du mur 3D (parametres communs ou differents)
24$piclenswallfeed = ( ($obj->my_config['piclens_wall_specif'] != 'common') ? true : false);
25
26// Generate rss
27include(PICLENS_PATH.'generate_rss.php');
28
29?>
Note: See TracBrowser for help on using the repository browser.