예제 #1
0
 /**
  * Show aside: this attachments appears in what notices
  *
  * @return void
  */
 function showSections()
 {
     $ns = new AttachmentNoticeSection($this);
     $ns->show();
     $atcs = new AttachmentTagCloudSection($this);
     $atcs->show();
 }
예제 #2
0
 /**
  * Show aside: this attachments appears in what notices
  *
  * @return void
  */
 function showSections()
 {
     $ns = new AttachmentNoticeSection($this);
     $ns->show();
     if (!common_config('performance', 'high')) {
         $atcs = new AttachmentTagCloudSection($this);
         $atcs->show();
     }
 }