- Registriert
- 30. Apr. 2011
- Beiträge
- 6.202
- Punkte
- 523
- XF Version
- 2.3.4
- XF Instanz
- Hosting
- PHP-Version
- 8.3.x
- MySQL/MariaDB
- 10.11.x
- Provider/Hoster
- Netcup & 24fire
Hi an die Experten,
ich bin gerade daran mein Infopage ein wenig zu überarbeiten. Nun habe ich ein kleines Problem mit einer IF Abfrage im Array. Bekomme folgenden Error...
Und das ist der Code..
Kann mir einer weiterhelfen??
ich bin gerade daran mein Infopage ein wenig zu überarbeiten. Nun habe ich ein kleines Problem mit einer IF Abfrage im Array. Bekomme folgenden Error...
Code:
Parse error: syntax error, unexpected 'if' (T_IF), expecting ')' in /kunden/xxxxx_xxxx/xfg/xf1-31/library/McA/InfoPage/Model/Imprint.php on line 30
PHP:
<?php
class McA_InfoPage_Model_Imprint extends XenForo_Model
{
public function getAvailablePages()
{
$options = XenForo_Application::get('options');
$terms_phrases = $options->mca_infopage_showterms_phrases;
$cookie_phrases = $options->mca_infopage_showcookies_phrases;
$pages = array(
'intro' => array(
'title' => new XenForo_Phrase('mca_infopage'),
'content' => XenForo_Application::get('options')->mca_infopage_intro_content
),
'aboutus' => array(
'title' => XenForo_Application::get('options')->mca_infopage_showaboutus_title,
'content' => XenForo_Application::get('options')->mca_infopage_showaboutus_content
),
'imprint' => array(
'title' => XenForo_Application::get('options')->mca_infopage_showimprint_title,
'content' => XenForo_Application::get('options')->mca_infopage_showimprint_content
),
'privacy' => array(
'title' => XenForo_Application::get('options')->mca_infopage_showprivacy_title,
'content' => XenForo_Application::get('options')->mca_infopage_showprivacy_content
),
'cookies' => array(
'title' => XenForo_Application::get('options')->mca_infopage_showcookies_title,
if ($cookie_phrases)
{ 'content' => XenForo_Application::get('options')->mca_infopage_showcookies_content }
else
{ 'content' => new XenForo_Phrase('help_cookies_description') }
),
'terms' => array(
'title' => XenForo_Application::get('options')->mca_infopage_showterms_title,
'content' => XenForo_Application::get('options')->mca_infopage_showterms_content
),
'info-1' => array(
'title' => XenForo_Application::get('options')->mca_infopage_showinfo_1_title,
'content' => XenForo_Application::get('options')->mca_infopage_showinfo_1_content
),
'info-2' => array(
'title' => XenForo_Application::get('options')->mca_infopage_showinfo_2_title,
'content' => XenForo_Application::get('options')->mca_infopage_showinfo_2_content
)
);
return $pages;
}
}
Kann mir einer weiterhelfen??