├── Block ├── Adminhtml │ └── Checklist.php ├── CmsCanonical.php ├── Sitemap │ ├── Category.php │ └── Cms.php ├── StructuredData │ ├── Organization.php │ └── TwitterCards.php ├── Template.php └── TrustedStores.php ├── Controller ├── Adminhtml │ └── Checklist │ │ └── Index.php └── Index │ └── Index.php ├── Helper └── Data.php ├── Model ├── Sitemap │ └── CmsPages.php └── Source │ ├── BadgePositions.php │ ├── Discontinued.php │ ├── Languages.php │ └── Robots.php ├── Observer ├── CanonicalProductRedirect.php ├── CategorySeoHeading.php ├── DefaultCategoryMeta.php ├── DefaultProductMeta.php ├── DiscontinuedCategoryCheck.php ├── DiscontinuedProductCheck.php ├── RemoveMetaKeywords.php ├── SetAdvancedSearchMetaRobots.php ├── SetCategoryMetaRobots.php ├── SetContactMetaDescTitle.php └── SetSearchMetaRobots.php ├── Setup └── InstallData.php ├── Test └── Unit │ └── Model │ └── ObserverTest.php ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ ├── menu.xml │ ├── routes.xml │ └── system.xml ├── config.xml ├── frontend │ ├── events.xml │ └── routes.xml └── module.xml ├── images ├── category-heading.png ├── checklist-config.png ├── checklist-scope.png ├── gts-badge.png ├── sitemap.png └── social-sd.png ├── readme.md ├── registration.php └── view ├── adminhtml ├── layout │ ├── catalog_product_new.xml │ └── foxseo_checklist_index.xml ├── templates │ └── checklist.phtml └── web │ └── catalog │ └── product │ └── foxseo.js └── frontend ├── layout ├── catalog_category_view.xml ├── catalog_product_view.xml ├── checkout_onepage_success.xml ├── cms_index_index.xml ├── cms_page_view.xml ├── default.xml └── sitemap_index_index.xml └── templates ├── cms └── canonical.phtml ├── google ├── content-grouping.phtml ├── sitelink-search.phtml ├── tagmanager.phtml ├── trusted-store.phtml └── trustedstore │ ├── product.phtml │ └── success.phtml ├── sitemap ├── category.phtml └── cms.phtml └── structureddata ├── breadcrumbs.phtml ├── js.phtml ├── organization.phtml └── twittercards.phtml /Block/Adminhtml/Checklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/Adminhtml/Checklist.php -------------------------------------------------------------------------------- /Block/CmsCanonical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/CmsCanonical.php -------------------------------------------------------------------------------- /Block/Sitemap/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/Sitemap/Category.php -------------------------------------------------------------------------------- /Block/Sitemap/Cms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/Sitemap/Cms.php -------------------------------------------------------------------------------- /Block/StructuredData/Organization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/StructuredData/Organization.php -------------------------------------------------------------------------------- /Block/StructuredData/TwitterCards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/StructuredData/TwitterCards.php -------------------------------------------------------------------------------- /Block/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/Template.php -------------------------------------------------------------------------------- /Block/TrustedStores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Block/TrustedStores.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Checklist/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Controller/Adminhtml/Checklist/Index.php -------------------------------------------------------------------------------- /Controller/Index/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Controller/Index/Index.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /Model/Sitemap/CmsPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Model/Sitemap/CmsPages.php -------------------------------------------------------------------------------- /Model/Source/BadgePositions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Model/Source/BadgePositions.php -------------------------------------------------------------------------------- /Model/Source/Discontinued.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Model/Source/Discontinued.php -------------------------------------------------------------------------------- /Model/Source/Languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Model/Source/Languages.php -------------------------------------------------------------------------------- /Model/Source/Robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Model/Source/Robots.php -------------------------------------------------------------------------------- /Observer/CanonicalProductRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/CanonicalProductRedirect.php -------------------------------------------------------------------------------- /Observer/CategorySeoHeading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/CategorySeoHeading.php -------------------------------------------------------------------------------- /Observer/DefaultCategoryMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/DefaultCategoryMeta.php -------------------------------------------------------------------------------- /Observer/DefaultProductMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/DefaultProductMeta.php -------------------------------------------------------------------------------- /Observer/DiscontinuedCategoryCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/DiscontinuedCategoryCheck.php -------------------------------------------------------------------------------- /Observer/DiscontinuedProductCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/DiscontinuedProductCheck.php -------------------------------------------------------------------------------- /Observer/RemoveMetaKeywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/RemoveMetaKeywords.php -------------------------------------------------------------------------------- /Observer/SetAdvancedSearchMetaRobots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/SetAdvancedSearchMetaRobots.php -------------------------------------------------------------------------------- /Observer/SetCategoryMetaRobots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/SetCategoryMetaRobots.php -------------------------------------------------------------------------------- /Observer/SetContactMetaDescTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/SetContactMetaDescTitle.php -------------------------------------------------------------------------------- /Observer/SetSearchMetaRobots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Observer/SetSearchMetaRobots.php -------------------------------------------------------------------------------- /Setup/InstallData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Setup/InstallData.php -------------------------------------------------------------------------------- /Test/Unit/Model/ObserverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/Test/Unit/Model/ObserverTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/frontend/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/frontend/events.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/etc/module.xml -------------------------------------------------------------------------------- /images/category-heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/images/category-heading.png -------------------------------------------------------------------------------- /images/checklist-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/images/checklist-config.png -------------------------------------------------------------------------------- /images/checklist-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/images/checklist-scope.png -------------------------------------------------------------------------------- /images/gts-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/images/gts-badge.png -------------------------------------------------------------------------------- /images/sitemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/images/sitemap.png -------------------------------------------------------------------------------- /images/social-sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/images/social-sd.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/readme.md -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/catalog_product_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/adminhtml/layout/catalog_product_new.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/foxseo_checklist_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/adminhtml/layout/foxseo_checklist_index.xml -------------------------------------------------------------------------------- /view/adminhtml/templates/checklist.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/adminhtml/templates/checklist.phtml -------------------------------------------------------------------------------- /view/adminhtml/web/catalog/product/foxseo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/adminhtml/web/catalog/product/foxseo.js -------------------------------------------------------------------------------- /view/frontend/layout/catalog_category_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/layout/catalog_category_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/checkout_onepage_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/layout/checkout_onepage_success.xml -------------------------------------------------------------------------------- /view/frontend/layout/cms_index_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/layout/cms_index_index.xml -------------------------------------------------------------------------------- /view/frontend/layout/cms_page_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/layout/cms_page_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/layout/sitemap_index_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/layout/sitemap_index_index.xml -------------------------------------------------------------------------------- /view/frontend/templates/cms/canonical.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/cms/canonical.phtml -------------------------------------------------------------------------------- /view/frontend/templates/google/content-grouping.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/google/content-grouping.phtml -------------------------------------------------------------------------------- /view/frontend/templates/google/sitelink-search.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/google/sitelink-search.phtml -------------------------------------------------------------------------------- /view/frontend/templates/google/tagmanager.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/google/tagmanager.phtml -------------------------------------------------------------------------------- /view/frontend/templates/google/trusted-store.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/google/trusted-store.phtml -------------------------------------------------------------------------------- /view/frontend/templates/google/trustedstore/product.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/google/trustedstore/product.phtml -------------------------------------------------------------------------------- /view/frontend/templates/google/trustedstore/success.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/google/trustedstore/success.phtml -------------------------------------------------------------------------------- /view/frontend/templates/sitemap/category.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/sitemap/category.phtml -------------------------------------------------------------------------------- /view/frontend/templates/sitemap/cms.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/sitemap/cms.phtml -------------------------------------------------------------------------------- /view/frontend/templates/structureddata/breadcrumbs.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/structureddata/breadcrumbs.phtml -------------------------------------------------------------------------------- /view/frontend/templates/structureddata/js.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/structureddata/js.phtml -------------------------------------------------------------------------------- /view/frontend/templates/structureddata/organization.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/structureddata/organization.phtml -------------------------------------------------------------------------------- /view/frontend/templates/structureddata/twittercards.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adampmoss/foxseo2/HEAD/view/frontend/templates/structureddata/twittercards.phtml --------------------------------------------------------------------------------