HomeWiki
HomeWiki
  1. Brands
  • Back to home
  • 1. Themes
  • Layout
    • New Layout
    • Legacy Layout
  • Components
    • Announcement
    • Banner Carousel
    • Banner With Products Carousel
    • Blog Category List
    • Blog List
    • Brand List
    • Brands Carousel
    • Breadcrumb
    • Call To Action
    • Cart
    • Categories List
    • Change Password
    • Checkout
    • Cookie Manager
    • Filter list
    • Footer
    • Forgot Password
    • Form
    • Hero Carousel
    • Icon Block
    • Invitation
    • Last Visited Products
    • Layout
    • Login
    • Map
    • Nav Bar
    • Offer
    • Product Attachments
    • Product Attributes
    • Product Documentation
    • Product Expected
    • Product Modal
    • Products Block
    • Products Carousel
    • Product Single
    • Profile
    • Quote
    • Register
    • Related Products
    • Search
    • Stores
    • Subscribe Newsletter
    • Text with Image
    • Top Bar
    • Video
  • Reusables
    • Getting Started
  • Assets
    • Getting Started
  • SDK
    • Products
      • _findProductsByCategory
      • _findProductsByIds
      • _findProductsByTitle
      • _findProductsByFilter
      • _findProductsByCriteria
      • _findProductsAndCalculate
      • _findProductsThenCalculate
      • _getProductAttributeSet
      • _setLastVisited
    • Categories
      • _findCategoryTreeById
      • _findCategoriesByIds
      • _findCategoryByAlias
      • _findCategoryTreeByAlias
      • _getCategoryContent
    • Collections
      • _getCollectionContent
      • _findCollectionsByIds
      • _findCollectionsByIdsThenCalculate
    • Brands
      • _getBrandContent
      • _findBrandsByIds
    • Cart
      • _addToCartMulti
      • _addToCart
      • _setCart
      • _clearCart
      • _setCartListener
      • _removeFromCart
      • _calculateCart
    • Checkout
      • _startCheckout
      • _updateCheckout
      • _completeCheckout
    • Shopping Lists
      • _getShoppingLists
      • _updateShoppingList
      • _createShoppingList
      • _deleteShoppingList
      • _getShoppingListByAlias
    • Navigation
      • _getFooterMenu
      • _getHeaderMenu
    • Users
      • _getUserById
    • Utils
      • _calculateCurrency
      • _getCurrencySymbol
      • _getCulture
      • _subscribeToNewsletter
      • _findUnitsByIds
  • Vs Code
    • Getting Started
  1. Brands

_getBrandContent

Example Usage of _getBrandContent Method#

The _getBrandContent method retrieves detailed content or information for a specific brand based on its ID. This method utilizes an internal function to fetch content specific to the brand type.

Overview#

The _getBrandContent method allows you to access and handle detailed content related to a brand within your application. It simplifies the process of fetching brand-specific information, which can be used for displaying brand details, products, or any other related data.

Method Signature#

Parameters#

brandId (Number/String): The unique identifier of the brand for which content is to be retrieved.
callback (Function): A function that will be called with the retrieved brand content.

How to Use#

1.
Define the Brand ID: Identify the brand for which you want to retrieve content by providing its unique ID.
2.
Define a Callback Function: Create a function that will handle the brand content once it is retrieved. This function will process the brand information and perform any necessary actions.
3.
Invoke the Method: Call the _getBrandContent method with the brand ID and the callback function.

Example Usage#

Here is an example of how to use the _getBrandContent method:
In this example:
brandId specifies the ID of the brand whose content you want to retrieve.
handleBrandContent is the function that processes and logs the retrieved content.

Detailed Steps#

1.
Provide Brand ID: Pass the unique identifier of the brand to the _getBrandContent method. This ID is used to fetch the relevant content.
2.
Callback Function: Implement a callback function that will receive the brand content once it is retrieved. This function should be capable of handling the content and performing any required operations.
3.
Content Retrieval: The _getBrandContent method will internally use _getInternalContentByType to fetch content for the specified brand type ("brands").
4.
Handling the Response: Once the content is retrieved, the callback function will be called with the brand content, allowing you to handle it as needed.

Error Handling#

Ensure that the brandId provided is valid and corresponds to an existing brand.
The callback function should be prepared to handle scenarios where content might be null or undefined.

Notes#

Internal Function: The _getInternalContentByType function is used internally by _getBrandContent. Ensure that this function is correctly implemented and accessible.
Callback Implementation: The callback function should be designed to process and display brand content effectively, including handling any potential errors.
By following this guide, you can effectively use the _getBrandContent method to fetch and handle detailed content for brands in your application.
Previous
_findCollectionsByIdsThenCalculate
Next
_findBrandsByIds
Built with