forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhidden_block.py
56 lines (49 loc) · 1.35 KB
/
hidden_block.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""
The Hidden XBlock.
"""
from web_fragments.fragment import Fragment
from xblock.core import XBlock
from xmodule.raw_block import RawMixin
from xmodule.xml_block import XmlMixin
from xmodule.x_module import (
XModuleMixin,
XModuleToXBlockMixin,
)
@XBlock.needs("i18n")
class HiddenBlock(
RawMixin,
XmlMixin,
XModuleToXBlockMixin,
XModuleMixin,
):
"""
XBlock class loaded by the runtime when another XBlock type has been disabled
or an unknown XBlock type is included in a course import.
"""
HIDDEN = True
has_author_view = True
resources_dir = None
def author_view(self, _context):
"""
Return the author view.
"""
fragment = Fragment()
_ = self.runtime.service(self, "i18n").ugettext
content = _(
'ERROR: "{block_type}" is an unknown component type. This component will be hidden in LMS.'
).format(block_type=self.scope_ids.block_type)
fragment.add_content(content)
return fragment
def studio_view(self, _context):
"""
Return the studio view.
"""
# User should not be able to edit unknown types.
fragment = Fragment()
return fragment
def student_view(self, _context):
"""
Return the student view.
"""
fragment = Fragment()
return fragment