[phpBB Debug] PHP Warning: in file [ROOT]/ext/tas2580/seourls/event/listener.php on line 213: Undefined array key "FORUM_NAME"
REDAXO Forum • Wie kann ich prüfen, ob ein Artikel "online" ist?
Seite 1 von 1

Wie kann ich prüfen, ob ein Artikel "online" ist?

Verfasst: 9. Okt 2018, 17:37
von oliwan
Hey an alle!

ich frage mich gerade, ob ich über das article objekt auch raus bekommen kann, ob der Artikel "online" ist :?

-> sowas wie

$article = rex_article::get('REX_LINK[id=13]');
if ($article->isOnline(true)) ...

funktioniert nicht :?

Hat jemand nen Tipp, das wäre echt toll?!

Oliwan

Re: Wie kann ich prüfen, ob ein Artikel "online" ist?

Verfasst: 9. Okt 2018, 18:05
von RexDude
tz tz tz... ;)

if ($article->isOnline()) {

oder:

if ($article->isOnline() == true) {

oder die negation:

if (!$article->isOnline()) {

und:

if ($article->isOnline() == false) {