0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
templates
/
[
Home
]
File: templateslib.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: templateslib.php 53803 2015-02-06 00:42:50Z jyhem $ //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"], basename(__FILE__)) !== false) { header("location: index.php"); exit; } /** * TemplatesLib * * @uses TikiLib */ class TemplatesLib extends TikiLib { /** * @param $section * @param $offset * @param $maxRecords * @param $sort_mode * @param $find * @return array */ public function list_templates($section, $offset, $maxRecords, $sort_mode, $find) { $bindvars = array($section); if ($find) { $findesc = '%'.$find.'%'; $mid = " and (`content` like ?)"; $bindvars[] = $findesc; } else { $mid = ""; } $query = "select `name` ,`created`,tcts.`templateId` from `tiki_content_templates` tct, `tiki_content_templates_sections` tcts "; $query.= " where tcts.`templateId`=tct.`templateId` and `section`=? $mid order by " . $this->convertSortMode($sort_mode); $query_cant = "select count(*) from `tiki_content_templates` tct, `tiki_content_templates_sections` tcts "; $query_cant.= "where tcts.`templateId`=tct.`templateId` and `section`=? $mid"; $result = $this->query($query, $bindvars, $maxRecords, $offset); $cant = $this->getOne($query_cant, $bindvars); $ret = array(); while ($res = $result->fetchRow()) { $query2 = "select `section` from `tiki_content_templates_sections` where `templateId`=?"; $result2 = $this->query($query2, array((int) $res["templateId"])); $sections = array(); while ($res2 = $result2->fetchRow()) { $sections[] = $res2["section"]; } $res["sections"] = $sections; $ret[] = $res; } $retval = array(); $retval["data"] = $ret; $retval["cant"] = $cant; return $retval; } /** * @param $templateId * @param null $lang * @return bool */ public function get_template($templateId, $lang = null) { $query = "select * from `tiki_content_templates` where `templateId`=?"; $result = $this->query($query, array((int) $templateId)); if (!$result->numRows()) { return false; } $res = $result->fetchRow(); if ( $res['template_type'] == 'page' ) { if ( substr($res['content'], 0, 5) == 'page:' ) { $res['page_name'] = substr($res['content'], 5); $res['content'] = $this->get_template_from_page($res['page_name'], $lang); } } else { $res['page_name'] = ''; } return $res; } /** * @param $templateId * @param null $lang * @param string $format * @return bool */ public function get_parsed_template($templateId, $lang = null, $format = 'yaml') { $res = $this->get_template($templateId, $lang); if ( !$res ) { return false; } switch ( $format ) { case 'yaml': $content = "{CODE(caption=>YAML)}objects:\n". " -\n". " type: file_gallery\n". " data:\n". " ". implode("\n ", explode("\n", $res['content'])) . "{CODE}"; $profile = Tiki_Profile::fromString($content, $res['name']); $installer = new Tiki_Profile_Installer(); $objects = $profile->getObjects(); if ( isset($objects[0]) ) { $data = $installer->getInstallHandler($objects[0])->getData(); unset($data['galleryId'], $data['parentId'], $data['name'], $data['user']); $res['content'] = $data; } else { $res['content'] = array(); } break; } return $res; } /** * @param $page * @param $lang * @return string */ private function get_template_from_page( $page, $lang ) { global $prefs; $info = $this->get_page_info($page); if ( $prefs['feature_multilingual'] == 'y' ) { $multilinguallib = TikiLib::lib('multilingual'); if ( $lang && $info['lang'] && $lang != $info['lang'] ) { $bestLangPageId = $multilinguallib->selectLangObj('wiki page', $info['page_id'], $lang); if ($info['page_id'] != $bestLangPageId) { $info = $this->get_page_info_from_id($bestLangPageId); } } } if ( $info ) { return TikiLib::htmldecode($info['data']); } } /** * @param $offset * @param $maxRecords * @param $sort_mode * @param $find * @return array */ public function list_all_templates($offset, $maxRecords, $sort_mode, $find) { $bindvars = array(); if ($find) { $bindvars[] = '%' . $find . '%'; $bindvars[] = '%' . $find . '%'; $mid = " where (`name` like ?) or (`content` like ?)"; } else { $mid = ""; } $query = "select `name`,`created`,`templateId` from `tiki_content_templates` $mid order by " . $this->convertSortMode($sort_mode); $query_cant = "select count(*) from `tiki_content_templates` $mid"; $result = $this->query($query, $bindvars, $maxRecords, $offset); $cant = $this->getOne($query_cant, $bindvars); $ret = array(); while ($res = $result->fetchRow()) { $query2 = "select `section` from `tiki_content_templates_sections` where `templateId`=?"; $result2 = $this->query($query2, array((int) $res["templateId"])); $sections = array(); while ($res2 = $result2->fetchRow()) { $sections[] = $res2["section"]; } $res["sections"] = $sections; $ret[] = $res; } $retval = array(); $retval["data"] = $ret; $retval["cant"] = $cant; return $retval; } /** * @param $templateId * @param $name * @param $content * @param string $type * @return mixed */ public function replace_template($templateId, $name, $content, $type = 'static') { $bindvars = array($content, $name, (int) $this->now, $type); if ($templateId) { $query = "update `tiki_content_templates` set `content`=?, `name`=?, `created`=?, `template_type`=? where `templateId`=?"; $bindvars[] = (int) $templateId; } else { $query = "delete from `tiki_content_templates` where `content`=? and `name`=?"; $this->query($query, array($content, $name), -1, -1, false); $query = "insert into `tiki_content_templates`(`content`,`name`,`created`,`template_type`) values(?,?,?,?)"; } $result = $this->query($query, $bindvars); $id = $this->getOne( "select max(`templateId`) from `tiki_content_templates` where `created`=? and `name`=?", array((int) $this->now, $name) ); return $id; } /** * @param $templateId * @param $section */ public function add_template_to_section($templateId, $section) { $this->query( "delete from `tiki_content_templates_sections` where `templateId`=? and `section`=?", array((int) $templateId, $section), -1, -1, false ); $query = "insert into `tiki_content_templates_sections`(`templateId`,`section`) values(?,?)"; $result = $this->query($query, array((int) $templateId, $section)); } /** * @param $templateId * @param $section */ public function remove_template_from_section($templateId, $section) { $result = $this->query( "delete from `tiki_content_templates_sections` where `templateId`=? and `section`=?", array((int) $templateId, $section) ); } /** * @param $templateId * @param $section * @return mixed */ public function template_is_in_section($templateId, $section) { $cant = $this->getOne( "select count(*) from `tiki_content_templates_sections` where `templateId`=? and `section`=?", array((int) $templateId, $section) ); return $cant; } /** * @param $templateId * @return bool */ public function remove_template($templateId) { $query = "delete from `tiki_content_templates` where `templateId`=?"; $result = $this->query($query, array((int) $templateId)); $query = "delete from `tiki_content_templates_sections` where `templateId`=?"; $result = $this->query($query, array((int) $templateId)); return true; } } $templateslib = new TemplatesLib;