edit-link für jeden artikel
edit-link für jeden artikel
Hallo,
ist es möglich, auf jedem Artikel, der im Frontend sichtbar ist, einen Link zu setzen, der das Editieren desselben Artikels im Backend erlaubt? Also daß der Artikel nach Klick auf den Link im Backend geöffnet wird...
ist es möglich, auf jedem Artikel, der im Frontend sichtbar ist, einen Link zu setzen, der das Editieren desselben Artikels im Backend erlaubt? Also daß der Artikel nach Klick auf den Link im Backend geöffnet wird...
so hi...
ich versuche folgendes in das template des artikels zu setzen (fuß):
<a href="phpwcms.php?do=articles&p=2&s=1&aktion=1&id=[PHP] echo $article["article_id"] [/PHP]">edit</a>
damit müßte es ja eigentlich klappen... allerdings ist article_id immer leer... muß ich da noch irgendwas einbinden oder so? große frage an hr. georgi...
ich versuche folgendes in das template des artikels zu setzen (fuß):
<a href="phpwcms.php?do=articles&p=2&s=1&aktion=1&id=[PHP] echo $article["article_id"] [/PHP]">edit</a>
damit müßte es ja eigentlich klappen... allerdings ist article_id immer leer... muß ich da noch irgendwas einbinden oder so? große frage an hr. georgi...
Hi,
vielleicht so etwas:
Christoph
vielleicht so etwas:
Code: Select all
<a href="phpwcms.php?do=articles&p=2&s=1&aktion=1&id=[PHP] echo $GLOBALS['row']['article_id'][/PHP]">edit</a>
Hi,
nice stuff, now would be great to enhance it to get overview of article instead of article itself.
And see edit link just when logged in backend, so it looks like a frontend editing.
possible?
nice stuff, now would be great to enhance it to get overview of article instead of article itself.
And see edit link just when logged in backend, so it looks like a frontend editing.
possible?
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
hi cyrano
do it like that:
<a href="phpwcms.php?do=articles&p=2&s=1&&id=[PHP] echo $GLOBALS['row']['article_id'][/PHP]" target="_blank">edit</a>
(drop the aktion=1 in former code)
you see this link in the frontend. it opens a new window... if you are not logged into the backend you get the login-screen. if logged-in, you get the article overview (the content-parts it is build from).
i wanted this, because i have a very deep site-structure (navigation) with many articles and then the backend-navigation is not very handy
do it like that:
<a href="phpwcms.php?do=articles&p=2&s=1&&id=[PHP] echo $GLOBALS['row']['article_id'][/PHP]" target="_blank">edit</a>
(drop the aktion=1 in former code)
you see this link in the frontend. it opens a new window... if you are not logged into the backend you get the login-screen. if logged-in, you get the article overview (the content-parts it is build from).
i wanted this, because i have a very deep site-structure (navigation) with many articles and then the backend-navigation is not very handy
Hallo sicko,
eine schöne Idee, gefällt mir. Damit der EDIT Link nur dann
sichtbar wird, wenn die ID einen Wert hat und
der "webmaster" eingeloggt ist, habe ich das noch versucht. Müsste gehen:
EDIT: Gerade merke ich, man muss sich natürlich vorher auf herkömmlichem Weg einloggen. Vielleicht doch nicht so gut.
Christoph
eine schöne Idee, gefällt mir. Damit der EDIT Link nur dann
sichtbar wird, wenn die ID einen Wert hat und
der "webmaster" eingeloggt ist, habe ich das noch versucht. Müsste gehen:
Code: Select all
[PHP]
if (html_specialchars($_SESSION['wcs_user'])=="webmaster"){
$id = $GLOBALS['row']['article_id'];
if (isset($id)){
echo "<a href='phpwcms.php?do=articles&p=2&s=1&&id=$id' target='_blank'>edit</a>";
}
}
[/PHP]
Christoph
hi sicko, hi cwenet,
thanx. fine - tried it and works like i thought when logged in.
fine.
now would be great to have this set in article setup procedure,
"edit" option box like "top link" than this get more automated.
cool stuff.
thanx. fine - tried it and works like i thought when logged in.
fine.
now would be great to have this set in article setup procedure,
"edit" option box like "top link" than this get more automated.
cool stuff.
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3