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


PHP ThemeFilePath函数代码示例

本文整理汇总了PHP中ThemeFilePath函数的典型用法代码示例。如果您正苦于以下问题:PHP ThemeFilePath函数的具体用法?PHP ThemeFilePath怎么用?PHP ThemeFilePath使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: Render_NoPostBack

 function Render_NoPostBack()
 {
     $this->CallDelegate('PreNoPostBackRender');
     $this->PostBackParams->Add('PostBackAction', 'SignOutNow');
     include ThemeFilePath($this->Context->Configuration, 'people_signout_form_nopostback.php');
     $this->CallDelegate('PostNoPostBackRender');
 }
开发者ID:laiello,项目名称:lussumo-vanilla,代码行数:7,代码来源:People.Control.Leave.php

示例2: Render

 function Render()
 {
     $this->CallDelegate('PreRender');
     include ThemeFilePath($this->Context->Configuration, 'overall_footer.php');
     include ThemeFilePath($this->Context->Configuration, 'page_end.php');
     $this->CallDelegate('PostRender');
 }
开发者ID:laiello,项目名称:lussumo-vanilla,代码行数:7,代码来源:Framework.Control.PageEnd.php

示例3: Render

 function Render()
 {
     if ($this->IsPostBack) {
         $this->CallDelegate('PreRender');
         include ThemeFilePath($this->Context->Configuration, 'settings_registration_form.php');
         $this->CallDelegate('PostRender');
     }
 }
开发者ID:jaran,项目名称:opencongress,代码行数:8,代码来源:People.Control.RegistrationForm.php

示例4: Render

 function Render()
 {
     if ($this->PostBackAction == 'Role') {
         $this->CallDelegate('PreRender');
         include ThemeFilePath($this->Context->Configuration, 'account_role_form.php');
         $this->CallDelegate('PostRender');
     }
 }
开发者ID:laiello,项目名称:lussumo-vanilla,代码行数:8,代码来源:Vanilla.Control.AccountRoleForm.php

示例5: Render

 function Render()
 {
     if ($this->PostBackAction == '') {
         $this->CallDelegate('PreRender');
         include ThemeFilePath($this->Context->Configuration, 'settings_help.php');
         $this->CallDelegate('PostRender');
     }
 }
开发者ID:jaran,项目名称:opencongress,代码行数:8,代码来源:Vanilla.Control.SettingsHelp.php

示例6: Render

 function Render()
 {
     if ($this->IsPostBack) {
         $this->User->FormatPropertiesForDisplay();
         $this->CallDelegate('PreRender');
         include ThemeFilePath($this->Context->Configuration, 'account_identity_form.php');
         $this->CallDelegate('PostRender');
     }
 }
开发者ID:evanfarrar,项目名称:opensprints.org,代码行数:9,代码来源:Vanilla.Control.IdentityForm.php

示例7: Render

 function Render()
 {
     // First sort the tabs by key
     ksort($this->Tabs);
     // Now write the Menu
     $this->CallDelegate('PreRender');
     include ThemeFilePath($this->Context->Configuration, 'menu.php');
     $this->CallDelegate('PostRender');
 }
开发者ID:jaran,项目名称:opencongress,代码行数:9,代码来源:Vanilla.Control.Menu.php

示例8: Write

 function Write(&$Context)
 {
     @(include ThemeFilePath($Context->Configuration, 'fatal_error.php'));
     // Cleanup
     if ($Context) {
         $Context->Unload();
     }
     die;
 }
开发者ID:evanfarrar,项目名称:opensprints.org,代码行数:9,代码来源:Framework.Class.ErrorManager.php

示例9: Render

 function Render()
 {
     if ($this->CssClass != '') {
         $this->CssClass = ' ' . $this->CssClass;
     }
     $this->CallDelegate('PreRender');
     include ThemeFilePath($this->Context->Configuration, 'people_menu.php');
     $this->CallDelegate('PostRender');
 }
开发者ID:evanfarrar,项目名称:opensprints.org,代码行数:9,代码来源:People.Control.PeopleMenu.php

示例10: Render

 function Render()
 {
     if ($this->IsPostBack) {
         $this->CallDelegate("PreRender");
         $this->PostBackParams->Set('PostBackAction', 'ProcessApplicants');
         include ThemeFilePath($this->Context->Configuration, 'settings_applicants_form.php');
         $this->CallDelegate("PostRender");
     }
 }
开发者ID:jaran,项目名称:opencongress,代码行数:9,代码来源:People.Control.ApplicantsForm.php

示例11: Render

 function Render()
 {
     if (is_array($this->Notices)) {
         ksort($this->Notices);
     }
     $this->CallDelegate('PreRender');
     include ThemeFilePath($this->Context->Configuration, 'notices.php');
     $this->CallDelegate('PostRender');
 }
开发者ID:laiello,项目名称:lussumo-vanilla,代码行数:9,代码来源:Framework.Control.NoticeCollector.php

示例12: Render

 function Render()
 {
     if ($this->IsPostBack) {
         $this->CallDelegate('PreRender');
         $this->PostBackParams->Clear();
         $this->PostBackParams->Set('PostBackAction', 'ProcessGlobals');
         include ThemeFilePath($this->Context->Configuration, 'settings_globals_form.php');
         $this->CallDelegate('PostRender');
     }
 }
开发者ID:jaran,项目名称:opencongress,代码行数:10,代码来源:Vanilla.Control.GlobalsForm.php

示例13: ApplicationForm_AddRealNameInputs

function ApplicationForm_AddRealNameInputs($ApplyForm)
{
    $DefaultThemeDir = dirname(__FILE__) . '/theme/';
    if (version_compare(APPLICATION_VERSION, '1.2', '<')) {
        $ThemeFile = $DefaultThemeDir . 'ExtendedApplicationForm_aply_form.php';
    } else {
        $ThemeFile = ThemeFilePath($ApplyForm->Context->Configuration, 'ExtendedApplicationForm_aply_form.php', $DefaultThemeDir);
    }
    include $ThemeFile;
}
开发者ID:laiello,项目名称:lussumo-vanilla,代码行数:10,代码来源:default.php

示例14: Render

 function Render()
 {
     if ($this->TemplateFile != '' && $this->IsPostBack) {
         $Template = ThemeFilePath($this->Context->Configuration, $this->TemplateFile);
         if (file_exists($Template)) {
             $this->CallDelegate('PreRender');
             include $Template;
             $this->CallDelegate('PostRender');
         }
     }
 }
开发者ID:jaran,项目名称:opencongress,代码行数:11,代码来源:Framework.Control.Filler.php

示例15: Render

 function Render()
 {
     if (is_array($this->PanelElements)) {
         ksort($this->PanelElements);
     }
     if ($this->CssClass != '') {
         $this->CssClass = ' ' . $this->CssClass;
     }
     $this->CallDelegate('PreRender');
     include ThemeFilePath($this->Context->Configuration, $this->Template);
     $this->CallDelegate('PostRender');
 }
开发者ID:laiello,项目名称:lussumo-vanilla,代码行数:12,代码来源:Framework.Control.Panel.php


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