Last change
on this file since 11032 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:
761 bytes
|
Rev | Line | |
---|
[3637] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | * Plugin Name: CoolIris-Piclens |
---|
[3645] | 4 | * File : piclens-rss.php |
---|
| 5 | */ |
---|
[3637] | 6 | |
---|
| 7 | define('PHPWG_ROOT_PATH','../../'); |
---|
| 8 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 9 | |
---|
| 10 | |
---|
| 11 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php'); |
---|
| 12 | include_once(PHPWG_ROOT_PATH.'include/section_init.inc.php'); |
---|
| 13 | |
---|
| 14 | // +-----------------------------------------------------------------------+ |
---|
| 15 | // | Check Access and exit when user status is not ok | |
---|
| 16 | // +-----------------------------------------------------------------------+ |
---|
| 17 | check_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 = false; |
---|
| 25 | |
---|
| 26 | // Generate rss |
---|
| 27 | include(PICLENS_PATH.'generate_rss.php'); |
---|
| 28 | |
---|
| 29 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.