private function _renderWarning($warning, $links = false)
 {
     if (self::$_warningRendered) {
         return;
     }
     echo '<div style="padding: 10px; text-align: center">';
     echo $warning;
     if ($links) {
         echo '<br /><br />';
         echo 'Please <a href="https://github.com/vqmod/vqmod/releases/tag/v2.5.1-opencart.zip" target="_blank">download VQMod</a> and read ';
         echo '<a href="https://github.com/vqmod/vqmod/wiki/Installing-vQmod-on-OpenCart" target="_blank">How to installl VQMod</a>';
     }
     echo '</div>';
     self::$_warningRendered = true;
 }