root/ez_publish/myutils/trunk/cronjobs/cleanup_expired_session.php

Revision 272, 1.1 KB (checked in by llaumgui, 4 months ago)

Métrosexualisation du code...

Line 
1<?php
2//
3// Created on: <01-Sep-2008 19:00:00 bf>
4//
5// SOFTWARE NAME: MyUtils
6// SOFTWARE RELEASE: 1.0
7// BUILD VERSION:
8// COPYRIGHT NOTICE: Copyright (c) 2008 Guillaume Kulakowski and contributors
9// SOFTWARE LICENSE: GNU General Public License v2.0
10// NOTICE: >
11//   This program is free software; you can redistribute it and/or
12//   modify it under the terms of version 2.0  of the GNU General
13//   Public License as published by the Free Software Foundation.
14//
15//   This program is distributed in the hope that it will be useful,
16//   but WITHOUT ANY WARRANTY; without even the implied warranty of
17//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18//   GNU General Public License for more details.
19//
20//   You should have received a copy of version 2.0 of the GNU General
21//   Public License along with this program; if not, write to the Free
22//   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
23//   MA 02110-1301, USA.
24//
25//
26
27
28/*! \file cleanup_expired_session.php
29*/
30
31if ( !$isQuiet )
32{
33    $cli->output( "Clean expired session"  );
34}
35include_once( 'lib/ezutils/classes/ezsession.php' );
36eZSessionGarbageCollector();
37
38?>
Note: See TracBrowser for help on using the browser.