function show()
 {
     $this->out->elementStart('div', 'profile_block account_profile_block section');
     if (Event::handle('StartShowAccountProfileBlock', array($this->out, $this->profile))) {
         parent::show();
         Event::handle('EndShowAccountProfileBlock', array($this->out, $this->profile));
     }
     $this->out->elementEnd('div');
 }
 function show()
 {
     $this->out->elementStart('div', 'profile_block group_profile_block section');
     if (Event::handle('StartShowGroupProfileBlock', array($this->out, $this->group))) {
         parent::show();
         Event::handle('EndShowGroupProfileBlock', array($this->out, $this->group));
     }
     $this->out->elementEnd('div');
 }
Пример #3
0
 function showName()
 {
     parent::showName();
     $this->showAliases();
 }