當前位置: 首頁>>代碼示例>>PHP>>正文


PHP kernel::loadLib方法代碼示例

本文整理匯總了PHP中kernel::loadLib方法的典型用法代碼示例。如果您正苦於以下問題:PHP kernel::loadLib方法的具體用法?PHP kernel::loadLib怎麽用?PHP kernel::loadLib使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在kernel的用法示例。


在下文中一共展示了kernel::loadLib方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: users

    function users()
    {
        if (isset($_GET['del'])) {
            $this->delete($_GET['del']);
        }
        kernel::loadLib('apiconfirm');
        apiconfirm::load();
        echo '<script src="lib/shadowbox/shadowbox.js"></script>
				<script type="text/javascript">
					Shadowbox.init();
				</script>';
        echo '<div id="apigui">
					<table>
						<tr>
							<th>login</th>
							<th>e-mail</th>
							<th>daty</th>
							<th>adresy ip</th>
							<th>obiekty</th>
							<th>pozostałe</th>
							<th>opcje</th>
						</tr>' . $this->pobierzUserow('<tr><td>#LOGIN#</td> <td>#E-MAIL#</td> <td><b>Zarejestrowany:</b> #REG_DATE#<br/><b>Ostatnio aktywny:</b> #LAST_DATE#</td> <td><b>IP rejestracji:</b> #REG_IP#<br/><b>Ostatnie IP:</b> #LAST_IP#</td> <td>#OBJECTS#</td> <td><b>Aktywny:</b> #ACTIVE#<br/><b>Status:</b> #STATUS#</td> <td><a href="?go=users&amp;feature=edit&amp;id=#ID#" rel="shadowbox;width=480">edytuj</a>, <a href="?go=users&amp;feature=list&amp;del=#ID#" title="Czy na pewno chcesz usunąć użytkownika <b>#LOGIN-EMPTY#</b>?" class="apiconfirm">usuń</a></td></tr>', $_GET['page'], 10) . '</table>
				<div style="margin-top:10px; text-align: center;">
				' . $this->pagination(' <a href="?go=users&page=#">&laquo;</a> ', ' <a href="?go=users&page=#">#</a> ', ' [ # ] ', ' <a href="?go=users&page=#">&raquo;</a> ', @$_GET['page'], 10) . '
				</div>
			</div>';
    }
開發者ID:roxio,項目名稱:TenTego2,代碼行數:27,代碼來源:app_admin.php

示例2: ads

    function ads()
    {
        $this->validity();
        if (isset($_GET['del'])) {
            $this->delete($_GET['del']);
        }
        kernel::loadLib('apiconfirm');
        apiconfirm::load();
        echo '<script src="lib/shadowbox/shadowbox.js"></script>
				<script type="text/javascript">
					Shadowbox.init();
				</script>';
        echo '<div id="apigui">
					<table>
						<tr>
							<th>podgląd kodu</th>
							<th>info</th>
							<th>opcje</th>
						</tr>' . $this->pobierzReklamy('<tr><td>#CODE#</td> <td><b>Nazwa:</b> #TITLE#<br/><b>Położenie:</b> #PLACE#<br/><b>Wyświetlana do:</b> #DATE#<br/><b>Aktywna:</b> #ACTIVE#</td> <td><a href="?go=ads&amp;feature=edit&amp;id=#ID#" rel="shadowbox;width=580">edytuj</a>, <a href="?go=ads&amp;feature=list&amp;del=#ID#" title="Czy na pewno chcesz usunąć <b>#TITLE#</b>?" class="apiconfirm">usuń</a></td></tr>') . '</table>
			</div>';
    }
開發者ID:roxio,項目名稱:TenTego2,代碼行數:21,代碼來源:app_admin.php

示例3: kernel

ob_start();
require_once "sys/init.php";
//!important
require_once "sys/kernel.php";
//!important
$kernel = new kernel();
$kernel->session_start();
$kernel->mysql();
$kernel->init();
$get = @$_GET['go'];
if (empty($get)) {
    header("LOCATION: index.php?go=home");
}
$kernel->load_app($get);
$kernel->loadLib("colgen");
$kernel->loadLib("cache");
$kernel->loadLib("apigui");
$api = new ApiGui();
if ($kernel->app_content(@$_GET['go'], $get)) {
    if (class_exists("mainContent")) {
        $content = new mainContent();
    }
}
?>
<!DOCTYPE html>
<html>
	<head>
		<title><?php 
echo $kernel->app->name;
?>
開發者ID:roxio,項目名稱:TenTego2,代碼行數:30,代碼來源:index.php

示例4: thumbnail

 function thumbnail($img)
 {
     ob_end_clean();
     header('Content-Type: image/png');
     kernel::loadLib("simpleimage");
     $image = new SimpleImage();
     $image->load($img);
     $image->resizeToWidth(480);
     $image->output();
     exit;
 }
開發者ID:roxio,項目名稱:TenTego2,代碼行數:11,代碼來源:app_admin.php


注:本文中的kernel::loadLib方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。