当前位置: 首页>>代码示例>>PHP>>正文


PHP AdminPage::initInternal方法代码示例

本文整理汇总了PHP中AdminPage::initInternal方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminPage::initInternal方法的具体用法?PHP AdminPage::initInternal怎么用?PHP AdminPage::initInternal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在AdminPage的用法示例。


在下文中一共展示了AdminPage::initInternal方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: initInternal

 protected function initInternal()
 {
     parent::initInternal();
     $this->ui->loadFromXML($this->ui_xml);
     $this->initComments();
     $this->initCommentReplicator();
 }
开发者ID:nburka,项目名称:blorg,代码行数:7,代码来源:Index.php

示例2: initInternal

 protected function initInternal()
 {
     parent::initInternal();
     $this->ui->loadFromXML($this->ui_xml);
     $this->id = SiteApplication::initVar('id');
     $this->initTag();
 }
开发者ID:nburka,项目名称:blorg,代码行数:7,代码来源:Details.php

示例3: initInternal

 protected function initInternal()
 {
     parent::initInternal();
     $this->ui->loadFromXML($this->ui_xml);
     $button = $this->ui->getWidget('submit_button');
     $camera_time_zone = $this->app->config->pinhole->camera_time_zone;
     $time_zone = $camera_time_zone === null ? $this->app->default_time_zone->getName() : $camera_time_zone;
     $this->ui->getWidget('photo_time_zone')->value = $time_zone;
     $this->ui->getWidget('camera_time_zone')->value = $time_zone;
     $this->ui->getWidget('private_field')->visible = $this->app->config->pinhole->enable_private_photos;
     $this->config_ui_map = array('camera_time_zone' => 'photo_time_zone', 'set_pending' => 'set_pending', 'set_private_photos' => 'private', 'set_content_by_meta_data' => 'set_content_by_meta_data', 'set_tags_by_meta_data' => 'set_tags_by_meta_data', 'auto_rotate' => 'auto_rotate');
     foreach ($this->config_ui_map as $config_name => $id) {
         $value = $this->app->config->pinhole->{$config_name};
         if ($value !== null) {
             $this->ui->getWidget($id)->value = $value;
         }
     }
 }
开发者ID:gauthierm,项目名称:pinhole,代码行数:18,代码来源:Upload.php

示例4: initInternal

 protected function initInternal()
 {
     parent::initInternal();
     // relocate to photo index page
     $this->app->relocate('Photo');
 }
开发者ID:gauthierm,项目名称:pinhole,代码行数:6,代码来源:Index.php

示例5: initInternal

 protected function initInternal()
 {
     parent::initInternal();
     $this->post_id = SiteApplication::initVar('post_id', null, SiteApplication::VAR_GET);
     $this->form_unique_id = SiteApplication::initVar('form_unique_id', null, SiteApplication::VAR_GET);
 }
开发者ID:GervaisdeM,项目名称:blorg,代码行数:6,代码来源:FileImageServer.php

示例6: initInternal

 protected function initInternal()
 {
     parent::initInternal();
     $this->initReport();
 }
开发者ID:nrfredrickson,项目名称:Cme,代码行数:5,代码来源:Download.php


注:本文中的AdminPage::initInternal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。