当前位置: 首页>>代码示例>>PHP>>正文


PHP Q_Request::platform方法代码示例

本文整理汇总了PHP中Q_Request::platform方法的典型用法代码示例。如果您正苦于以下问题:PHP Q_Request::platform方法的具体用法?PHP Q_Request::platform怎么用?PHP Q_Request::platform使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Q_Request的用法示例。


在下文中一共展示了Q_Request::platform方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Users_device_post

function Users_device_post()
{
    $user = Users::loggedInUser(true);
    $token = isset($_REQUEST['token']) ? $_REQUEST['token'] : null;
    $platform = Q_Request::platform();
    $version = Q_Request::OSVersion();
    $formFactor = Q_Request::isMobile() ? 'mobile' : (Q_Request::isTablet() ? 'tablet' : null);
    $device = new Users_Device();
    $device->userId = $user->id;
    $device->deviceId = $token;
    $device->platform = $platform;
    $device->version = $version;
    $device->formFactor = $formFactor;
    $device->sessionId = Q_Session::id();
    $_SESSION['Users']['deviceId'] = $token;
    Q_Response::setSlot('data', !!$device->save(true));
    Q_Utils::sendToNode(array("Q/method" => "Users/device", "userId" => $user->id, "deviceId" => $token));
}
开发者ID:dmitriz,项目名称:Platform,代码行数:18,代码来源:post.php

示例2: foreach

    echo Q_Html::themedUrl('img/icon/152.png');
    ?>
" />
	<link rel="apple-touch-icon-precomposed" sizes="180x180" href="<?php 
    echo Q_Html::themedUrl('img/icon/180.png');
    ?>
" />
	<?php 
}
?>
	<link rel="shortcut icon" sizes="196x196" href="<?php 
echo Q_Html::themedUrl('img/icon/196.png');
?>
" />
	<?php 
if (Q_Request::platform() === 'android') {
    ?>
		<?php 
    foreach (array(36, 48, 72, 96, 144, 192) as $size) {
        ?>
			<link rel="icon" sizes="<?php 
        echo $size . 'x' . $size;
        ?>
" href="<?php 
        echo Q_Html::themedUrl("img/icon/android-icon-{$size}x{$size}.png");
        ?>
" />
		<?php 
    }
    ?>
	<?php 
开发者ID:AndreyTepaykin,项目名称:Platform,代码行数:31,代码来源:mobile.php

示例3: htmlAttributes

 static function htmlAttributes()
 {
     $touchscreen = Q_Request::isTouchscreen() ? 'Q_touchscreen' : 'Q_notTouchscreen';
     $mobile = Q_Request::isMobile() ? 'Q_mobile' : 'Q_notMobile';
     $cordova = Q_Request::isCordova() ? 'Q_cordova' : 'Q_notCordova';
     $platform = 'Q_' . Q_Request::platform();
     $ie = Q_Request::isIE() ? 'Q_ie' : 'Q_notIE';
     $ie8 = Q_Request::isIE(0, 8) ? 'Q_ie8OrBelow' : 'Q_notIE8OrBelow';
     $uri = Q_Dispatcher::uri();
     $classes = "{$uri->module} {$uri->module}_{$uri->action}";
     $result = 'lang="en" prefix="og: http://ogp.me/ns# object: http://ogp.me/ns/object#" ' . "class='{$touchscreen} {$mobile} {$cordova} {$platform} {$ie} {$ie8} {$classes}'";
     return $result;
 }
开发者ID:dmitriz,项目名称:Platform,代码行数:13,代码来源:Response.php

示例4: htmlAttributes

 /**
  * Returns the string containing all the html attributes
  * @method htmlAttributes
  * @static
  * @return {string}
  */
 static function htmlAttributes()
 {
     $touchscreen = Q_Request::isTouchscreen() ? 'Q_touchscreen' : 'Q_notTouchscreen';
     $mobile = Q_Request::isMobile() ? 'Q_mobile' : 'Q_notMobile';
     $cordova = Q_Request::isCordova() ? 'Q_cordova' : 'Q_notCordova';
     $platform = 'Q_' . Q_Request::platform();
     $ie = Q_Request::isIE() ? 'Q_ie' : 'Q_notIE';
     $ie8 = Q_Request::isIE(0, 8) ? 'Q_ie8OrBelow' : 'Q_notIE8OrBelow';
     $uri = Q_Dispatcher::uri();
     $classes = "{$uri->module} {$uri->module}_{$uri->action}";
     foreach (self::$htmlCssClasses as $k => $v) {
         $classes .= Q_Html::text(" {$k}");
     }
     $language = self::language();
     return 'lang="' . $language . '" ' . 'prefix="og: http://ogp.me/ns# object: http://ogp.me/ns/object#" ' . "class='{$touchscreen} {$mobile} {$cordova} {$platform} {$ie} {$ie8} {$classes}'";
 }
开发者ID:AndreyTepaykin,项目名称:Platform,代码行数:22,代码来源:Response.php

示例5: userAgentInfo

 /**
  * Some standard info to be stored in sessions, devices, etc.
  * @return {array}
  */
 static function userAgentInfo()
 {
     $info = array('formFactor' => Q_Request::formFactor(), 'platform' => Q_Request::platform(), 'version' => Q_Request::OSVersion());
     $fields = Q_Config::get('Q', 'session', 'userAgentInfo', array());
     return Q::take($info, $fields);
 }
开发者ID:AndreyTepaykin,项目名称:Platform,代码行数:10,代码来源:Request.php


注:本文中的Q_Request::platform方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。