setsession($session);
}
// ____________________________________________________ C O N F I G ______________________________________________
public function configform()
{
?>
Config file does not exist yet, or maybe you deleted it ? Anyway, it is time to set it :
';
if ($art->secure() == 1) {
echo '
cet article est privé
';
}
if ($art->secure() == 2) {
echo "
cet article n'est pas publié
";
}
if ($app->session() >= $art->secure()) {
?>
= $art->titre() ?>
= $art->soustitre() ?>
= $art->html($app) ?>
';
}
public function edit(Art $art, App $app, $list)
{
if ($app->session() >= self::$edit) {
?>
';
}
public function aside(App $app)
{
if ($app->session() >= $app::EDITOR) {
echo ' ';
}
}
public function nav($app)
{
echo '
session() >= $app::EDITOR) {
?>
Add Media
';
echo 'Media List';
echo '';
echo '
';
echo '';
}
//______________________________________________________ R E C _________________________________________________
public function recordlist(App $app, $dir = "../ACRRecordings/")
{
echo '';
echo 'Media List';
echo '';
echo '
';
echo '';
}
//______________________________________________________ A D M _________________________________________________
public function admincss(Config $config, $app)
{
?>
The table is where all your articles are stored, select the one you want to use.
Add table
Create new table in your database. You need at least one to use W_cms
= 0) {
$session = intval($session);
$this->session = $session;
}
}
//______________________________________________________ G E T _________________________________________________
public function session()
{
return $this->session;
}
}
?>