Exemple #1
0
 function run()
 {
     global $Templates, $Controller;
     $r = '';
     if ($this->Image && ($img = $Controller->{$this->Image})) {
         $r .= $img->htmltag();
     }
     if ($this->DisplayMembers) {
         $r .= $this->userList();
     }
     $this->appendContent('main', $r);
     parent::run();
 }