来自:http://www.kingreatwill.com
Hi,
Having just started developing nopCommerce (and having forked out for the User Guide, which is rather optimistically described as "is the definitive guide to installing, configuring, building, maintaining an e-commerce site using the nopCommerce" but fails in many areas especially if you are a developer) I wanted to know where all the widget zones where.
I was surprised to find there was no definitive list, so I thought I'd create one, for all you budding Widget developers out there.
Below are two lists. The first is just a list of the widget zones that are available. The second is a list of all the cshtml files in which they appear. The list is based on a new install of nopCommerce 3.10 - no additional plugins or themes.
To add a new widget zone, add a line like:
@Html.Widget("your_new_widget_zone_name")
to the appropriate .cshtml file, and return the same name in the
public IList<string> GetWidgetZones()
method in your Widget's Plugin class.
Hope you all find it useful. Please vote for this post if you do!
Widget Zones
account_navigation_after
account_navigation_before
admin_dashboard_bottom
admin_dashboard_top
admin_header_after
admin_header_before
admin_header_middle
bloglist_page_after_posts
bloglist_page_before_posts
bloglist_page_inside_post
blogpost_page_after_comments
blogpost_page_before_body
blogpost_page_before_comments
blogpost_page_inside_comment
body_end_html_tag_before
body_start_html_tag_after
categorydetails_after_breadcrumb
categorydetails_after_featured_products
categorydetails_before_featured_products
categorydetails_before_filters
categorydetails_before_product_list
categorydetails_before_subcategories
categorydetails_bottom
categorydetails_top
checkout_billing_address_bottom
checkout_billing_address_middle
checkout_billing_address_top
checkout_completed_bottom
checkout_completed_top
checkout_confirm_bottom
checkout_confirm_top
checkout_payment_info_bottom
checkout_payment_info_top
checkout_payment_method_bottom
checkout_payment_method_top
checkout_progress_after
checkout_progress_before
checkout_shipping_address_bottom
checkout_shipping_address_middle
checkout_shipping_address_top
checkout_shipping_method_bottom
checkout_shipping_method_top
compareproducts_row
contactus_bottom
contactus_top
content_after
content_before
footer
head_html_tag
header
header_links_after
header_links_before
header_menu_after
header_menu_before
header_selectors
home_page_bottom
home_page_top
infoblock_after
infoblock_before
left_side_column_after
left_side_column_after_category_navigation
left_side_column_before
main_column_after
main_column_before
manufacturerdetails_after_featured_products
manufacturerdetails_before_featured_products
manufacturerdetails_before_filters
manufacturerdetails_before_product_list
manufacturerdetails_bottom
manufacturerdetails_top
mobile_account_navigation_after
mobile_account_navigation_before
mobile_bloglist_page_after_posts
mobile_bloglist_page_before_posts
mobile_bloglist_page_inside_post
mobile_blogpost_page_after_comments
mobile_blogpost_page_before_body
mobile_blogpost_page_before_comments
mobile_blogpost_page_inside_comment
mobile_body_end_html_tag_before
mobile_body_start_html_tag_after
mobile_categorydetails_before_featured_products
mobile_categorydetails_before_product_list
mobile_categorydetails_before_subcategories
mobile_categorydetails_bottom
mobile_categorydetails_top
mobile_checkout_billing_address_bottom
mobile_checkout_billing_address_middle
mobile_checkout_billing_address_top
mobile_checkout_completed_bottom
mobile_checkout_completed_top
mobile_checkout_confirm_bottom
mobile_checkout_confirm_top
mobile_checkout_payment_info_bottom
mobile_checkout_payment_info_top
mobile_checkout_payment_method_bottom
mobile_checkout_payment_method_top
mobile_checkout_shipping_address_bottom
mobile_checkout_shipping_address_middle
mobile_checkout_shipping_address_top
mobile_checkout_shipping_method_bottom
mobile_checkout_shipping_method_top
mobile_compareproducts_row
mobile_contactus_bottom
mobile_contactus_top
mobile_content_after
mobile_content_before
mobile_footer
mobile_head_html_tag
mobile_header_links_after
mobile_header_links_before
mobile_home_page_bottom
mobile_home_page_top
mobile_infoblock_after
mobile_infoblock_before
mobile_manufacturerdetails_before_featured_products
mobile_manufacturerdetails_before_product_list
mobile_manufacturerdetails_bottom
mobile_manufacturerdetails_top
mobile_newsitem_page_after_comments
mobile_newsitem_page_before_body
mobile_newsitem_page_before_comments
mobile_newsitem_page_inside_comment
mobile_newslist_page_after_items
mobile_newslist_page_before_items
mobile_newslist_page_inside_item
mobile_notifications
mobile_order_summary_content_after
mobile_order_summary_content_before
mobile_order_summary_content_deals
mobile_orderdetails_page_afterproducts
mobile_orderdetails_page_beforeproducts
mobile_orderdetails_page_bottom
mobile_orderdetails_page_overview
mobile_orderdetails_page_top
mobile_productdetails_add_info
mobile_productdetails_after_pictures
mobile_productdetails_before_pictures
mobile_productdetails_bottom
mobile_productdetails_top
mobile_productreviews_page_bottom
mobile_productreviews_page_inside_review
mobile_productreviews_page_top
mobile_productsbytag_bottom
mobile_productsbytag_top
mobile_profile_page_info_userdetails
mobile_profile_page_info_userstats
mobile_searchbox
newsitem_page_after_comments
newsitem_page_before_body
newsitem_page_before_comments
newsitem_page_inside_comment
newslist_page_after_items
newslist_page_before_items
newslist_page_inside_item
notifications
op_checkout_billing_address_bottom
op_checkout_billing_address_middle
op_checkout_billing_address_top
op_checkout_confirm_bottom
op_checkout_confirm_top
op_checkout_payment_info_bottom
op_checkout_payment_info_top
op_checkout_payment_method_bottom
op_checkout_payment_method_top
op_checkout_shipping_address_bottom
op_checkout_shipping_address_middle
op_checkout_shipping_address_top
op_checkout_shipping_method_bottom
op_checkout_shipping_method_top
order_summary_cart_footer
order_summary_content_after
order_summary_content_before
order_summary_content_deals
orderdetails_page_afterproducts
orderdetails_page_beforeproducts
orderdetails_page_bottom
orderdetails_page_overview
orderdetails_page_top
productbox_add_info
productbreadcrumb_after
productbreadcrumb_before
productdetails_add_info
productdetails_after_pictures
productdetails_before_collateral
productdetails_before_pictures
productdetails_bottom
productdetails_overview_bottom
productdetails_overview_top
productdetails_top
productreviews_page_bottom
productreviews_page_inside_review
productreviews_page_top
productsbytag_before_product_list
productsbytag_bottom
productsbytag_top
productsearch_page_advanced
productsearch_page_basic
profile_page_info_userdetails
profile_page_info_userstats
right_side_column_after
right_side_column_before
searchbox
The pages on which they appear:
The paths are all relative to the root of the nop.Web project, except for the last 5 which are in the nop.Admin project
ViewsBlogBlogPost.cshtml blogpost_page_before_body
ViewsBlogBlogPost.cshtml blogpost_page_before_comments
ViewsBlogBlogPost.cshtml blogpost_page_inside_comment
ViewsBlogBlogPost.cshtml blogpost_page_after_comments
ViewsBlogBlogPost.Mobile.cshtml mobile_blogpost_page_before_body
ViewsBlogBlogPost.Mobile.cshtml mobile_blogpost_page_before_comments
ViewsBlogBlogPost.Mobile.cshtml mobile_blogpost_page_inside_comment
ViewsBlogBlogPost.Mobile.cshtml mobile_blogpost_page_after_comments
ViewsBlogList.cshtml bloglist_page_before_posts
ViewsBlogList.cshtml bloglist_page_inside_post
ViewsBlogList.cshtml bloglist_page_after_posts
ViewsBlogList.Mobile.cshtml mobile_bloglist_page_before_posts
ViewsBlogList.Mobile.cshtml mobile_bloglist_page_inside_post
ViewsBlogList.Mobile.cshtml mobile_bloglist_page_after_posts
ViewsCatalog\_AddToCart.cshtml productdetails_add_info
ViewsCatalog\_AddToCart.Mobile.cshtml mobile_productdetails_add_info
ViewsCatalog\_ProductBox.cshtml productbox_add_info
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_after_breadcrumb
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_top
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_before_subcategories
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_before_featured_products
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_after_featured_products
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_before_filters
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_before_product_list
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.cshtml categorydetails_bottom
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_categorydetails_top
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_categorydetails_before_subcategories
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_categorydetails_before_featured_products
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_categorydetails_before_product_list
ViewsCatalogCategoryTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_categorydetails_bottom
ViewsCatalogCompareProducts.cshtml compareproducts_row
ViewsCatalogCompareProducts.Mobile.cshtml mobile_compareproducts_row
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.cshtml manufacturerdetails_top
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.cshtml manufacturerdetails_before_featured_products
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.cshtml manufacturerdetails_after_featured_products
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.cshtml manufacturerdetails_before_filters
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.cshtml manufacturerdetails_before_product_list
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.cshtml manufacturerdetails_bottom
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_manufacturerdetails_top
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_manufacturerdetails_before_featured_products
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_manufacturerdetails_before_product_list
ViewsCatalogManufacturerTemplate.ProductsInGridOrLines.Mobile.cshtml mobile_manufacturerdetails_bottom
ViewsCatalogProductBreadcrumb.cshtml productbreadcrumb_before
ViewsCatalogProductBreadcrumb.cshtml productbreadcrumb_after
ViewsCatalogProductReviews.cshtml productreviews_page_top
ViewsCatalogProductReviews.cshtml productreviews_page_inside_review
ViewsCatalogProductReviews.cshtml productreviews_page_bottom
ViewsCatalogProductReviews.Mobile.cshtml mobile_productreviews_page_top
ViewsCatalogProductReviews.Mobile.cshtml mobile_productreviews_page_inside_review
ViewsCatalogProductReviews.Mobile.cshtml mobile_productreviews_page_bottom
ViewsCatalogProductsByTag.cshtml productsbytag_top
ViewsCatalogProductsByTag.cshtml productsbytag_before_product_list
ViewsCatalogProductsByTag.cshtml productsbytag_bottom
ViewsCatalogProductsByTag.Mobile.cshtml mobile_productsbytag_top
ViewsCatalogProductsByTag.Mobile.cshtml mobile_productsbytag_bottom
ViewsCatalogProductTemplate.Grouped.cshtml productdetails_top
ViewsCatalogProductTemplate.Grouped.cshtml productdetails_before_pictures
ViewsCatalogProductTemplate.Grouped.cshtml productdetails_after_pictures
ViewsCatalogProductTemplate.Grouped.cshtml productdetails_overview_top
ViewsCatalogProductTemplate.Grouped.cshtml productdetails_overview_bottom
ViewsCatalogProductTemplate.Grouped.cshtml productdetails_before_collateral
ViewsCatalogProductTemplate.Grouped.cshtml productdetails_bottom
ViewsCatalogProductTemplate.Grouped.Mobile.cshtml mobile_productdetails_top
ViewsCatalogProductTemplate.Grouped.Mobile.cshtml mobile_productdetails_before_pictures
ViewsCatalogProductTemplate.Grouped.Mobile.cshtml mobile_productdetails_after_pictures
ViewsCatalogProductTemplate.Grouped.Mobile.cshtml mobile_productdetails_bottom
ViewsCatalogProductTemplate.Simple.cshtml productdetails_top
ViewsCatalogProductTemplate.Simple.cshtml productdetails_before_pictures
ViewsCatalogProductTemplate.Simple.cshtml productdetails_after_pictures
ViewsCatalogProductTemplate.Simple.cshtml productdetails_overview_top
ViewsCatalogProductTemplate.Simple.cshtml productdetails_overview_bottom
ViewsCatalogProductTemplate.Simple.cshtml productdetails_before_collateral
ViewsCatalogProductTemplate.Simple.cshtml productdetails_bottom
ViewsCatalogProductTemplate.Simple.Mobile.cshtml mobile_productdetails_top
ViewsCatalogProductTemplate.Simple.Mobile.cshtml mobile_productdetails_before_pictures
ViewsCatalogProductTemplate.Simple.Mobile.cshtml mobile_productdetails_after_pictures
ViewsCatalogProductTemplate.Simple.Mobile.cshtml mobile_productdetails_bottom
ViewsCatalogSearch.cshtml productsearch_page_basic
ViewsCatalogSearch.cshtml productsearch_page_advanced
ViewsCatalogSearchBox.cshtml searchbox
ViewsCatalogSearchBox.Mobile.cshtml mobile_searchbox
ViewsCheckoutBillingAddress.cshtml checkout_billing_address_top
ViewsCheckoutBillingAddress.cshtml checkout_billing_address_middle
ViewsCheckoutBillingAddress.cshtml checkout_billing_address_bottom
ViewsCheckoutBillingAddress.Mobile.cshtml mobile_checkout_billing_address_top
ViewsCheckoutBillingAddress.Mobile.cshtml mobile_checkout_billing_address_middle
ViewsCheckoutBillingAddress.Mobile.cshtml mobile_checkout_billing_address_bottom
ViewsCheckoutCheckoutProgress.cshtml checkout_progress_before
ViewsCheckoutCheckoutProgress.cshtml checkout_progress_after
ViewsCheckoutCompleted.cshtml checkout_completed_top
ViewsCheckoutCompleted.cshtml checkout_completed_bottom
ViewsCheckoutCompleted.Mobile.cshtml mobile_checkout_completed_top
ViewsCheckoutCompleted.Mobile.cshtml mobile_checkout_completed_bottom
ViewsCheckoutConfirm.cshtml checkout_confirm_top
ViewsCheckoutConfirm.cshtml checkout_confirm_bottom
ViewsCheckoutConfirm.Mobile.cshtml mobile_checkout_confirm_top
ViewsCheckoutConfirm.Mobile.cshtml mobile_checkout_confirm_bottom
ViewsCheckoutOpcBillingAddress.cshtml op_checkout_billing_address_top
ViewsCheckoutOpcBillingAddress.cshtml op_checkout_billing_address_middle
ViewsCheckoutOpcBillingAddress.cshtml op_checkout_billing_address_bottom
ViewsCheckoutOpcConfirmOrder.cshtml op_checkout_confirm_top
ViewsCheckoutOpcConfirmOrder.cshtml op_checkout_confirm_bottom
ViewsCheckoutOpcPaymentInfo.cshtml op_checkout_payment_info_top
ViewsCheckoutOpcPaymentInfo.cshtml op_checkout_payment_info_bottom
ViewsCheckoutOpcPaymentMethods.cshtml op_checkout_payment_method_top
ViewsCheckoutOpcPaymentMethods.cshtml op_checkout_payment_method_bottom
ViewsCheckoutOpcShippingAddress.cshtml op_checkout_shipping_address_top
ViewsCheckoutOpcShippingAddress.cshtml op_checkout_shipping_address_middle
ViewsCheckoutOpcShippingAddress.cshtml op_checkout_shipping_address_bottom
ViewsCheckoutOpcShippingMethods.cshtml op_checkout_shipping_method_top
ViewsCheckoutOpcShippingMethods.cshtml op_checkout_shipping_method_bottom
ViewsCheckoutPaymentInfo.cshtml checkout_payment_info_top
ViewsCheckoutPaymentInfo.cshtml checkout_payment_info_bottom
ViewsCheckoutPaymentInfo.Mobile.cshtml mobile_checkout_payment_info_top
ViewsCheckoutPaymentInfo.Mobile.cshtml mobile_checkout_payment_info_bottom
ViewsCheckoutPaymentMethod.cshtml checkout_payment_method_top
ViewsCheckoutPaymentMethod.cshtml checkout_payment_method_bottom
ViewsCheckoutPaymentMethod.Mobile.cshtml mobile_checkout_payment_method_top
ViewsCheckoutPaymentMethod.Mobile.cshtml mobile_checkout_payment_method_bottom
ViewsCheckoutShippingAddress.cshtml checkout_shipping_address_top
ViewsCheckoutShippingAddress.cshtml checkout_shipping_address_middle
ViewsCheckoutShippingAddress.cshtml checkout_shipping_address_bottom
ViewsCheckoutShippingAddress.Mobile.cshtml mobile_checkout_shipping_address_top
ViewsCheckoutShippingAddress.Mobile.cshtml mobile_checkout_shipping_address_middle
ViewsCheckoutShippingAddress.Mobile.cshtml mobile_checkout_shipping_address_bottom
ViewsCheckoutShippingMethod.cshtml checkout_shipping_method_top
ViewsCheckoutShippingMethod.cshtml checkout_shipping_method_bottom
ViewsCheckoutShippingMethod.Mobile.cshtml mobile_checkout_shipping_method_top
ViewsCheckoutShippingMethod.Mobile.cshtml mobile_checkout_shipping_method_bottom
ViewsCommonContactUs.cshtml contactus_top
ViewsCommonContactUs.cshtml contactus_bottom
ViewsCommonContactUs.Mobile.cshtml mobile_contactus_top
ViewsCommonContactUs.Mobile.cshtml mobile_contactus_bottom
ViewsCommonFooter.cshtml footer
ViewsCommonFooter.Mobile.cshtml mobile_footer
ViewsCommonHeaderLinks.cshtml header_links_before
ViewsCommonHeaderLinks.cshtml header_links_after
ViewsCommonHeaderLinks.Mobile.cshtml mobile_header_links_before
ViewsCommonHeaderLinks.Mobile.cshtml mobile_header_links_after
ViewsCommonInfoBlock.cshtml infoblock_before
ViewsCommonInfoBlock.cshtml infoblock_after
ViewsCommonInfoBlock.Mobile.cshtml mobile_infoblock_before
ViewsCommonInfoBlock.Mobile.cshtml mobile_infoblock_after
ViewsCommonMenu.cshtml header_menu_before
ViewsCommonMenu.cshtml header_menu_after
ViewsCustomerMyAccountNavigation.cshtml account_navigation_before
ViewsCustomerMyAccountNavigation.cshtml account_navigation_after
ViewsCustomerMyAccountNavigation.Mobile.cshtml mobile_account_navigation_before
ViewsCustomerMyAccountNavigation.Mobile.cshtml mobile_account_navigation_after
ViewsHomeIndex.cshtml home_page_top
ViewsHomeIndex.cshtml home_page_bottom
ViewsHomeIndex.Mobile.cshtml mobile_home_page_top
ViewsHomeIndex.Mobile.cshtml mobile_home_page_bottom
ViewsNewsList.cshtml newslist_page_before_items
ViewsNewsList.cshtml newslist_page_inside_item
ViewsNewsList.cshtml newslist_page_after_items
ViewsNewsList.Mobile.cshtml mobile_newslist_page_before_items
ViewsNewsList.Mobile.cshtml mobile_newslist_page_inside_item
ViewsNewsList.Mobile.cshtml mobile_newslist_page_after_items
ViewsNewsNewsItem.cshtml newsitem_page_before_body
ViewsNewsNewsItem.cshtml newsitem_page_before_comments
ViewsNewsNewsItem.cshtml newsitem_page_inside_comment
ViewsNewsNewsItem.cshtml newsitem_page_after_comments
ViewsNewsNewsItem.Mobile.cshtml mobile_newsitem_page_before_body
ViewsNewsNewsItem.Mobile.cshtml mobile_newsitem_page_before_comments
ViewsNewsNewsItem.Mobile.cshtml mobile_newsitem_page_inside_comment
ViewsNewsNewsItem.Mobile.cshtml mobile_newsitem_page_after_comments
ViewsOrderDetails.cshtml orderdetails_page_top
ViewsOrderDetails.cshtml orderdetails_page_overview
ViewsOrderDetails.cshtml orderdetails_page_beforeproducts
ViewsOrderDetails.cshtml orderdetails_page_afterproducts
ViewsOrderDetails.cshtml orderdetails_page_bottom
ViewsOrderDetails.Mobile.cshtml mobile_orderdetails_page_top
ViewsOrderDetails.Mobile.cshtml mobile_orderdetails_page_overview
ViewsOrderDetails.Mobile.cshtml mobile_orderdetails_page_beforeproducts
ViewsOrderDetails.Mobile.cshtml mobile_orderdetails_page_afterproducts
ViewsOrderDetails.Mobile.cshtml mobile_orderdetails_page_bottom
ViewsProfileInfo.cshtml profile_page_info_userdetails
ViewsProfileInfo.cshtml profile_page_info_userstats
ViewsProfileInfo.Mobile.cshtml mobile_profile_page_info_userdetails
ViewsProfileInfo.Mobile.cshtml mobile_profile_page_info_userstats
ViewsShared\_ColumnsOne.cshtml main_column_before
ViewsShared\_ColumnsOne.cshtml main_column_after
ViewsShared\_ColumnsThree.cshtml left_side_column_before
ViewsShared\_ColumnsThree.cshtml left_side_column_after_category_navigation
ViewsShared\_ColumnsThree.cshtml left_side_column_after
ViewsShared\_ColumnsThree.cshtml main_column_before
ViewsShared\_ColumnsThree.cshtml main_column_after
ViewsShared\_ColumnsThree.cshtml right_side_column_before
ViewsShared\_ColumnsThree.cshtml right_side_column_after
ViewsShared\_ColumnsTwo.cshtml left_side_column_before
ViewsShared\_ColumnsTwo.cshtml left_side_column_after_category_navigation
ViewsShared\_ColumnsTwo.cshtml left_side_column_after
ViewsShared\_ColumnsTwo.cshtml main_column_before
ViewsShared\_ColumnsTwo.cshtml main_column_after
ViewsShared\_Notifications.cshtml notifications
ViewsShared\_Notifications.Mobile.cshtml mobile_notifications
ViewsShared\_Root.cshtml body_start_html_tag_after
ViewsShared\_Root.cshtml content_before
ViewsShared\_Root.cshtml content_after
ViewsShared\_Root.cshtml body_end_html_tag_before
ViewsShared\_Root.Head.cshtml head_html_tag
ViewsShared\_Root.Head.Mobile.cshtml mobile_head_html_tag
ViewsShared\_Root.Mobile.cshtml mobile_body_start_html_tag_after
ViewsShared\_Root.Mobile.cshtml mobile_content_before
ViewsShared\_Root.Mobile.cshtml mobile_content_after
ViewsShared\_Root.Mobile.cshtml mobile_body_end_html_tag_before
ViewsShared\_RootPopup.cshtml head_html_tag
ViewsShared\_RootPopup.cshtml body_start_html_tag_after
ViewsShared\_RootPopup.cshtml body_end_html_tag_before
ViewsSharedHeader.cshtml header
ViewsSharedHeader.cshtml header_selectors
ViewsShoppingCartOrderSummary.cshtml order_summary_content_before
ViewsShoppingCartOrderSummary.cshtml order_summary_cart_footer
ViewsShoppingCartOrderSummary.cshtml order_summary_content_deals
ViewsShoppingCartOrderSummary.cshtml order_summary_content_after
ViewsShoppingCartOrderSummary.Mobile.cshtml mobile_order_summary_content_before
ViewsShoppingCartOrderSummary.Mobile.cshtml mobile_order_summary_content_deals
ViewsShoppingCartOrderSummary.Mobile.cshtml mobile_order_summary_content_after
AdministrationViewsHomeIndex.cshtml admin_dashboard_top
AdministrationViewsHomeIndex.cshtml admin_dashboard_bottom
AdministrationViewsShared\_AdminLayout.cshtml admin_header_before
AdministrationViewsShared\_AdminLayout.cshtml admin_header_middle
AdministrationViewsShared\_AdminLayout.cshtml admin_header_after
http://www.nopcommerce.com/boards/t/25610/widgets-and-widgets-zones-in-310.aspx