linea21-modules
[
class tree: linea21-modules
] [
index: linea21-modules
] [
all elements
]
changeLog
Readme.fr.txt
Packages:
linea21-core
linea21-externals
linea21-languages
linea21-modules
linea21-utils
Source for file sup.php
Documentation is available at
sup.php
<?php
/**
*
@package
linea21.modules
*
@subpackage
news
*
@author
linea21 <info@linea21.com>
*
@version
$id SVN
*
@access
public
*
@license
http://opensource.org/licenses/gpl-3.0.html
*/
//////////// Check Inclusion de pages ////////////
if
(
!
function_exists
(
'AuthenthificationProcess'
))
{
include_once
(
"../lib/lib_common.php"
)
;
ReloadIndex
(
'admin'
)
;
}
////////////
if
(
isset
(
$_POST
[
'id'
]
))
$id
=
$_POST
[
'id'
]
;
if
(
isset
(
$_GET
[
'id'
]
))
$id
=
$_GET
[
'id'
]
;
$link_det
=
$rub_link
.
"&todo=det&id="
.
$id
;
if
(
isset
(
$_POST
[
'valider'
]
))
{
$news_object
=
new
news
;
$link_confirm
=
"confirm.php?rub="
.
$rub
.
"&todo="
.
$todo
;
$result
=
$news_object
->
DeleteNews
(
$id
,
$sql_object
)
;
if
(
$result
)
header
(
"Location: "
.
$link_confirm
)
;
else
system_error
(
)
;
}
$requete
=
SQL_getNewsTitle
(
$id
)
;
$result
=
$sql_object
->
DBSelect
(
$requete
)
;
$news_title
=
FormatText
(
$result
[
0
]
[
'news_title'
]
)
;
$news_owner
=
FormatText
(
$result
[
0
]
[
'news_posted_by'
]
)
;
//////////// Check Droits utilisateur ////////////
if
(
!
HaveRight
(
'news'
))
ReloadIndex
(
'admin'
)
;
if
(
GetSessionElement
(
'id'
)
!=
$news_owner
&&
!
IsSuperAdmin
(
))
ReloadIndex
(
'admin'
)
;
////////////
?>
<div id="chemin">
<ul>
<li>
<a href="index.php">
<?
echo
$GLOBALS
[
'lang'
]
[
'way'
]
[
'home'
]
;
?>
</a>
</li>
<li>
<a href="
<?php
echo
$rub_link
;
?>
">
<?
echo
$GLOBALS
[
'lang'
]
[
'menu'
]
[
'theme'
]
;
?>
</a>
</li>
<li>
<span>
<?
echo
formatNavTitle
(
$GLOBALS
[
'lang'
]
[
'news'
]
[
'sup'
]
.
" : "
.
$news_title
)
;
?>
</span>
</li>
</ul>
</div>
<!--end barre haute -->
<?php
include_once
(
"quickicons.php"
)
;
?>
<div class="contentcontainer">
<?php
include_once
(
$dir
.
"/menurub.php"
)
;
?>
<div id="content">
<?
echo
"<h2>"
.
formatTitleh2
(
$news_title
)
.
"</h2>"
;
?>
<form id="suptheme" action="
<?php
echo
$_SERVER
[
'SCRIPT_NAME'
]
;
?>
" method="post">
<p class="info">
<?php
echo
$GLOBALS
[
'lang'
]
[
'divers'
]
[
'sup_confirm'
]
;
?>
</p>
<div>
<input name="id" type="hidden" value="
<?php
echo
$id
;
?>
" />
<input name="rub" type="hidden" value="
<?php
echo
$rub
;
?>
" id="rub" />
<input name="todo" type="hidden" value="
<?php
echo
$todo
;
?>
" id="todo" />
<?php
echo
cancel_button
(
'javascript:history.go(-1);'
)
;
?>
<input name="valider" type="submit" value="
<?
echo
$GLOBALS
[
'lang'
]
[
'btn'
]
[
'valid'
]
;
?>
" class="button" id="valider" />
</div>
</form>
</div>
<?php
include_once
(
$dir
.
"/help.php"
)
;
?>
</div>
Documentation generated on Sat, 08 Nov 2008 14:54:26 +0100 by
phpDocumentor 1.4.1