Skip to content

Instantly share code, notes, and snippets.

@davidchc
Created November 23, 2012 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidchc/4135338 to your computer and use it in GitHub Desktop.
Save davidchc/4135338 to your computer and use it in GitHub Desktop.
Modificação da classe ControllerFeedGoogleSitemap adicionando novas paginas
<?php
class ControllerFeedGoogleSitemap extends Controller {
//Adicinado as URLs
private $urlFriendly = array(
'common/home' => 'home',
'checkout/cart' => 'carrinho',
'account/register' => 'cadastre-se',
'account/wishlist' => 'lista-de-desejo',
'checkout/checkout' => 'checkout',
'account/logout' => 'sair',
'account/login' => 'login',
'product/special' => 'especial',
'affiliate/account' => 'afiliado',
'checkout/voucher' => 'vale-presente',
'product/manufacturer' => 'fabricante',
'account/newsletter' => 'newsletter',
'account/order' => 'meus-pedidos',
'account/account' => 'minha-conta',
'information/contact' => 'contato',
'information/sitemap' => 'mapa-do-site',
'account/forgotten' => 'lembrar-senha',
'account/download' => 'meus-download',
'account/return' => 'minhas-devolucoes',
'account/transaction' => 'minhas-indicacoes',
'account/password' => 'alterar-senha',
'account/edit' => 'alterar-informacoes',
'account/address' => 'alterar-enderecos',
'account/reward' => 'pontos-de-fidelidade',
);
public function index() {
if ($this->config->get('google_sitemap_status')) {
$output = '<?xml version="1.0" encoding="UTF-8"?>';
$output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
$this->load->model('catalog/product');
$products = $this->model_catalog_product->getProducts();
/*Monta a estrutura com as paginas*/
foreach($this->urlFriendly as $key=> $url){
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&amp;', $this->url->link($key)) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>1.0</priority>';
$output .= '</url>';
}
foreach ($products as $product) {
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&amp;', $this->url->link('product/product', 'product_id=' . $product['product_id'])) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>1.0</priority>';
$output .= '</url>';
}
$this->load->model('catalog/category');
$categories = $this->model_catalog_category->getCategories();
$output .= $this->getCategories(0);
$this->load->model('catalog/manufacturer');
$manufacturers = $this->model_catalog_manufacturer->getManufacturers();
foreach ($manufacturers as $manufacturer) {
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&amp;', $this->url->link('product/manufacturer/product', 'manufacturer_id=' . $manufacturer['manufacturer_id'])) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>0.7</priority>';
$output .= '</url>';
$products = $this->model_catalog_product->getProducts(array('filter_manufacturer_id' => $manufacturer['manufacturer_id']));
foreach ($products as $product) {
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&amp;', $this->url->link('product/product', 'manufacturer_id=' . $manufacturer['manufacturer_id'] . '&product_id=' . $product['product_id'])) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>1.0</priority>';
$output .= '</url>';
}
}
$this->load->model('catalog/information');
$informations = $this->model_catalog_information->getInformations();
foreach ($informations as $information) {
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&amp;', $this->url->link('information/information', 'information_id=' . $information['information_id'])) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>0.5</priority>';
$output .= '</url>';
}
$output .= '</urlset>';
$this->response->addHeader('Content-Type: application/xml');
$this->response->setOutput($output);
}
}
protected function getCategories($parent_id, $current_path = '') {
$output = '';
$results = $this->model_catalog_category->getCategories($parent_id);
foreach ($results as $result) {
if (!$current_path) {
$new_path = $result['category_id'];
} else {
$new_path = $current_path . '_' . $result['category_id'];
}
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&amp;', $this->url->link('product/category', 'path=' . $new_path)) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>0.7</priority>';
$output .= '</url>';
$products = $this->model_catalog_product->getProducts(array('filter_category_id' => $result['category_id']));
foreach ($products as $product) {
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&amp;', $this->url->link('product/product', 'path=' . $new_path . '&product_id=' . $product['product_id'])) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>1.0</priority>';
$output .= '</url>';
}
$output .= $this->getCategories($result['category_id'], $new_path);
}
return $output;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment