26 lines
365 B
PHP
Executable File
26 lines
365 B
PHP
Executable File
<?php
|
|
|
|
class Cronrapportsp
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
|
|
public function lancer_archivage()
|
|
{
|
|
require_once 'Statistique.php';
|
|
|
|
$this->statistique = new Statistique();
|
|
$this->statistique->initstat();
|
|
}
|
|
|
|
}
|
|
|
|
// Lancer archivage
|
|
|
|
$cronrapportsp = new Cronrapportsp();
|
|
|
|
$cronrapportsp->lancer_archivage();
|