def get_search_text(self, instance):
     # Provide the search text for all items stored within this object.
     # This gives recursion the rendering function.
     shared_content = instance.shared_content
     return render_placeholder_search_text(
         shared_content.contents, fallback_language=True
     )
Пример #2
0
    def get_search_text(self, fallback_language=None):
        """
        Get the search text for all contents of this placeholder.

        :param fallback_language: The fallback language to use if there are no items in the current language.
                                  Passing ``True`` uses the default :ref:`FLUENT_CONTENTS_DEFAULT_LANGUAGE_CODE`.
        :type fallback_language: bool|str
        :rtype: str
        """
        from fluent_contents.rendering import render_placeholder_search_text
        return render_placeholder_search_text(self, fallback_language=fallback_language)
Пример #3
0
    def get_search_text(self, fallback_language=None):
        """
        Get the search text for all contents of this placeholder.

        :param fallback_language: The fallback language to use if there are no items in the current language.
                                  Passing ``True`` uses the default :ref:`FLUENT_CONTENTS_DEFAULT_LANGUAGE_CODE`.
        :type fallback_language: bool|str
        :rtype: str
        """
        from fluent_contents.rendering import render_placeholder_search_text
        return render_placeholder_search_text(self, fallback_language=fallback_language)
 def get_search_text(self, instance):
     # Provide the search text for all items stored within this object.
     # This gives recursion the rendering function.
     shared_content = instance.shared_content
     return render_placeholder_search_text(shared_content.contents, fallback_language=True)