// Execute the command
$commandInstance->execute($requestInstance, $responseInstance);
- // Run the pre filters
+ // Run the post filters
$this->executePostFilters($requestInstance, $responseInstance);
// Flush the response out
// Execute the command
$commandInstance->execute($requestInstance, $responseInstance);
- // Run the pre filters
+ // Run the post filters
$this->executePostFilters($requestInstance, $responseInstance);
// Flush the response out
// Execute the command
$commandInstance->execute($requestInstance, $responseInstance);
- // Run the pre filters
+ // Run the post filters
$this->executePostFilters($requestInstance, $responseInstance);
// Flush the response out
// Execute the command
$commandInstance->execute($requestInstance, $responseInstance);
- // Run the pre filters
+ // Run the post filters
$this->executePostFilters($requestInstance, $responseInstance);
// Flush the response out
// Execute the command
$commandInstance->execute($requestInstance, $responseInstance);
- // Run the pre filters
+ // Run the post filters
$this->executePostFilters($requestInstance, $responseInstance);
// Flush the response out
// Execute the command
$commandInstance->execute($requestInstance, $responseInstance);
- // Run the pre filters
+ // Run the post filters
$this->executePostFilters($requestInstance, $responseInstance);
// Flush the response out
// Execute the command
$commandInstance->execute($requestInstance, $responseInstance);
- // Run the pre filters
+ // Run the post filters
$this->executePostFilters($requestInstance, $responseInstance);
// Flush the response out
// Get "page"
$page = $requestInstance->getRequestElement('page');
- // Is "page" used?
+ // Is 'page' used?
if (!empty($page)) {
// Then add it
- $configEntry = sprintf("news_reader_%s_class", $page);
+ $configEntry = sprintf('news_reader_%s_class', $page);
- // Get "action"
+ // Get 'action'
$action = $requestInstance->getRequestElement('action');
// Is it also there?
if (!empty($action)) {
// Then use both for config entry
- $configEntry = sprintf("news_reader_%s_%s_class", $page, $action);
+ $configEntry = sprintf('news_reader_%s_%s_class', $page, $action);
} // END - if
} // END - if