Source code for shuup.xtheme.layout._category

# -*- coding: utf-8 -*-
# This file is part of Shuup.
#
# Copyright (c) 2012-2021, Shuup Commerce Inc. All rights reserved.
#
# This source code is licensed under the OSL-3.0 license found in the
# LICENSE file in the root directory of this source tree.
from django.utils.translation import ugettext_lazy as _

from shuup.xtheme.layout import Layout


[docs]class CategoryLayout(Layout): identifier = "xtheme-category-layout"
[docs] def get_help_text(self, context): category = context.get("category") if not category: return "" return _( "Content in this placeholder is shown for %(category_name)s category only." % {"category_name": category.name} )
[docs] def is_valid_context(self, context): return bool(context.get("category"))
[docs] def get_layout_data_suffix(self, context): return "%s-%s" % (self.identifier, context["category"].pk)