示例#1
0
文件: Index.php 项目: nburka/blorg
 protected function buildInternal()
 {
     parent::buildInternal();
     $this->buildInfo();
     $this->buildPostsView();
     $this->buildCommentReplicator();
 }
示例#2
0
文件: Index.php 项目: nburka/blorg
 protected function buildInternal()
 {
     parent::buildInternal();
     $this->buildMessages();
     $this->buildSiteSettingsView();
     $this->buildAdSettingsView();
 }
示例#3
0
文件: Details.php 项目: nburka/blorg
 protected function buildInternal()
 {
     parent::buildInternal();
     $this->buildMessages();
     $ds = new SwatDetailsStore($this->tag);
     $ds->post_count = $this->tag->getPostCount();
     $details_view = $this->ui->getWidget('details_view');
     $details_view->data = $ds;
     $details_frame = $this->ui->getWidget('details_frame');
     $details_frame->title = Blorg::_('Tag');
     $details_frame->subtitle = $this->tag->title;
     $this->buildToolbar();
 }
示例#4
0
 protected function buildInternal()
 {
     parent::buildInternal();
     $this->ui->getWidget('form')->action = $this->getComponentName() . '/Upload';
     $this->ui->getWidget('form')->upload_status_server = $this->getComponentName() . '/UploadStatusServer';
 }