getConflicts(); ?>
getArticles() as $article) { ?>
getCurlLog(); if (!empty($curlLog)) { $debug = array_merge($debug, $curlLog); $debug[] = ''; } if (function_exists('ini_get')) { $debug[] = 'PHP: ' . phpversion(); $debug[] = 'PHP - memory_limit: ' . ini_get('memory_limit'); $debug[] = 'PHP - max_input_vars: ' . ini_get('max_input_vars'); $opcache = ini_get('opcache.enable'); $debug[] = 'PHP - opcache.enable: ' . intval($opcache); if ($opcache) { $debug[] = 'PHP - opcache.revalidate_freq: ' . ini_get('opcache.revalidate_freq'); } $debug[] = ''; } $debugConflicts = $this->getDebugConflicts(); if (empty($debugConflicts)) { $debug[] = 'No conflicts detected'; } else { $debug[] = 'Conflicts:'; foreach ($debugConflicts as $conflict) { $debug[] = ' - ' . $conflict; } $debug[] = ''; } $debug = array_merge($debug, Platform::getDebug()); ?>