Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

20 linhas
1.9 KiB

  1. # Copyright © Magento, Inc. All rights reserved.
  2. # See COPYING.txt for license details.
  3. type StoreConfig {
  4. head_shortcut_icon : String @doc(description: "The small graphic image (favicon) that appears in the address bar and tab of the browser.")
  5. default_title : String @doc(description: "The title that appears at the title bar of each page when viewed in a browser.")
  6. title_prefix : String @doc(description: "A prefix that appears before the title to create a two- or three-part title.")
  7. title_suffix : String @doc(description: "A suffix that appears after the title to create a two- or three-part title.")
  8. default_description : String @doc(description: "The description that provides a summary of your site for search engine listings. It should not be more than 160 characters in length.")
  9. default_keywords : String @doc(description: "A series of keywords that describe your store, each separated by a comma.")
  10. head_includes : String @doc(description: "Scripts that must be included in the HTML before the closing `<head>` tag.")
  11. demonotice : Int @doc(description: "Controls the display of the demo store notice at the top of the page. Options: 0 (No) or 1 (Yes).")
  12. header_logo_src : String @doc(description: "The path to the logo that appears in the header.")
  13. logo_width : Int @doc(description: "The width of the logo image, in pixels.")
  14. logo_height : Int @doc(description: "The height of the logo image, in pixels.")
  15. welcome : String @doc(description: "Text that appears in the header of the page and includes the name of the logged in customer.")
  16. logo_alt : String @doc(description: "The Alt text that is associated with the logo.")
  17. absolute_footer : String @doc(description: "Contains scripts that must be included in the HTML before the closing `<body>` tag.")
  18. copyright : String @doc(description: "The copyright statement that appears at the bottom of each page.")
  19. }