瀏覽代碼

whoops, missed a file

master
memespring 17 年之前
父節點
當前提交
fe01bc6ab3
共有 3 個文件被更改,包括 33 次插入2 次删除
  1. +1
    -1
      data/%%AD^AD7^AD71B708%%rss.tpl.php
  2. +1
    -1
      data/%%F7^F7F^F7F34188%%header.tpl.php
  3. +31
    -0
      docs/apihowto.php

+ 1
- 1
data/%%AD^AD7^AD71B708%%rss.tpl.php 查看文件

@@ -1,4 +1,4 @@
<?php /* Smarty version 2.6.16, created on 2007-04-09 16:50:59
<?php /* Smarty version 2.6.16, created on 2007-04-09 17:21:15
compiled from rss.tpl */ ?>
<?php echo '<?xml'; ?>
version="1.0" encoding="UTF-8"<?php echo '?>'; ?>


+ 1
- 1
data/%%F7^F7F^F7F34188%%header.tpl.php 查看文件

@@ -1,4 +1,4 @@
<?php /* Smarty version 2.6.16, created on 2007-04-09 17:14:56
<?php /* Smarty version 2.6.16, created on 2007-04-09 17:25:09
compiled from header.tpl */ ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


+ 31
- 0
docs/apihowto.php 查看文件

@@ -0,0 +1,31 @@
<?php
require_once ("config.php");
$api = new api;

class api {

//Constructor
function api() {
$this->bind();
}

//howto
function bind() {
$form_action = $_SERVER['PHP_SELF'];

$smarty = new Smarty;
$smarty->force_compile = true;
$smarty->compile_dir = SMARTY_COMPILE_DIRECTORY;

$smarty->assign("page_title","API");
$smarty->assign("menu_item","api");

$smarty->display('apihowto.tpl');
}

}



?>

Loading…
取消
儲存