1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
class MyNetworkBlock < Block
attr_accessible :display, :box
def self.description
_('My network')
end
def default_title
_('My network')
end
def help
_('This block displays some info about your networking.')
end
def cacheable?
false
end
end
|