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


PHP Templates::fetchRow方法代码示例

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


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

示例1: buildViewer

 function buildViewer($template_id, $album_id)
 {
     $this->template_id = $template_id;
     $this->album_id = $album_id;
     $this->setupDir();
     $templates = new Templates();
     $this->template = $templates->fetchRow('id=' . $template_id);
     if (!$this->template->data) {
         throw new BuilderException('Template not uploaded');
     }
     $this->writeResources();
     $images = $this->imageList();
     foreach ($images as $image) {
         $this->logger->info("building {$image->title}");
         $this->current_image = $image;
         $this->buildPage();
     }
     symlink($this->build_dir . '/1.html', $this->build_dir . '/index.html');
     $this->setBuildTime();
 }
开发者ID:ngroesz,项目名称:Photoplate,代码行数:20,代码来源:ViewerBuilder.php

示例2: saveData

 function saveData($id)
 {
     if (is_uploaded_file($_FILES['file']['tmp_name'])) {
         $templates = new Templates();
         $template = $templates->fetchRow('id = ' . $id);
         $template->data = join('', file($_FILES['file']['tmp_name']));
         $template->save();
         $this->resourcesToDb($this->findResources($template->data), $id);
     }
 }
开发者ID:ngroesz,项目名称:Photoplate,代码行数:10,代码来源:TemplateController.php


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