function showSections()
 {
     ProfileAction::showSections();
     // skip tag cloud
 }
Пример #2
0
 function showSections()
 {
     parent::showSections();
     if (!common_config('performance', 'high')) {
         $cloud = new PersonalTagCloudSection($this, $this->user);
         $cloud->show();
     }
 }
Пример #3
0
 function showSections()
 {
     parent::showSections();
     $cloud = new PersonalTagCloudSection($this, $this->user);
     $cloud->show();
 }