本文整理汇总了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&feature=edit&id=#ID#" rel="shadowbox;width=480">edytuj</a>, <a href="?go=users&feature=list&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=#">«</a> ', ' <a href="?go=users&page=#">#</a> ', ' [ # ] ', ' <a href="?go=users&page=#">»</a> ', @$_GET['page'], 10) . '
</div>
</div>';
}
示例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&feature=edit&id=#ID#" rel="shadowbox;width=580">edytuj</a>, <a href="?go=ads&feature=list&del=#ID#" title="Czy na pewno chcesz usunąć <b>#TITLE#</b>?" class="apiconfirm">usuń</a></td></tr>') . '</table>
</div>';
}
示例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;
?>
示例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;
}