Site integration
PermalinkFeedback messages meaning if user submits incorrect authentication, the message that is displayed back to him.
<div id="ccm-theme-wrapper"> <?php if (isset($error)) { ?> <?php if ($error instanceof Exception) { $_error[] = $error->getMessage(); } else if ($error instanceof ValidationErrorHelper) { $_error = $error->getList(); } else if (is_array($error)) { $_error = $error; } else if (is_string($error)) { $_error[] = $error; } ?> <ul class="ccm-error"> <?php foreach($_error as $e) { ?><li><?php echo $e?></li><?php } ?>
this handles themes like login/403/page_not_found etc.