1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class ProfileImageBlock < Block
attr_accessible :show_name
settings_items :show_name, :type => :boolean, :default => false
def self.description
_('Profile Image')
end
def help
_('This block presents the profile image')
end
def cacheable?
false
end
end
|