本文整理汇总了PHP中PDOConnection::ViewTable方法的典型用法代码示例。如果您正苦于以下问题:PHP PDOConnection::ViewTable方法的具体用法?PHP PDOConnection::ViewTable怎么用?PHP PDOConnection::ViewTable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PDOConnection
的用法示例。
在下文中一共展示了PDOConnection::ViewTable方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
// Config Application instance.
$this->site = array(DOMAIN => 'http://' . $_SERVER['HTTP_HOST'] . '/', ROOT => $_SERVER['DOCUMENT_ROOT'] . '/', STORE => 'file_store', COM => 'facebook/component/', MOD => 'facebook/module/', APP => 'http://apps.facebook.com/hakkomew/', IFRAME => 'http://' . $_SERVER['HTTP_HOST'] . '/facebook/module/iframe/');
//Set Default Component
if (!isset($_GET['component'])) {
$_GET['component'] = 'frontpage';
}
//Query ID Position
foreach (parent::ViewTable('position', 0) as $pos) {
$this->idPosition[$pos['name']] = $pos['pos_id'];
}
//Query ID Component
$this->idComponent = parent::GetValue('com_id', 'component', 'name', $_GET['component']);
//Online User
$user = self::Facebook('/me');
if ($user['session']) {
if (!isset($_GET['manga'])) {
$this->Update('user_online', 'mag_id', 0, 'uid', $user['session']['uid']);
}
$delWhere = parent::GetValue('expires', 'user_online', 'uid', $user['session']['uid']) . '<' . $_SERVER['REQUEST_TIME'];
$this->Delete('user_online', $delWhere);
if (parent::CountRow('user_online', 'uid', $user['session']['uid']) < 1) {
$this->Insert('user_online', array('expires', 'uid'), array($user['session']['expires'], $user['session']['uid']));
}
} else {
// Guest User.
echo '<iframe src="' . $this->site[IFRAME] . 'guest_cookie.php" frameborder="0" style="width:0px; height:0px;"></iframe>';
}
}