本文整理汇总了PHP中Parse\ParseObject::hasRegisteredSubclass方法的典型用法代码示例。如果您正苦于以下问题:PHP ParseObject::hasRegisteredSubclass方法的具体用法?PHP ParseObject::hasRegisteredSubclass怎么用?PHP ParseObject::hasRegisteredSubclass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Parse\ParseObject
的用法示例。
在下文中一共展示了ParseObject::hasRegisteredSubclass方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initialize
/**
* Parse\Client::initialize, must be called before using Parse features.
*
* @param string $app_id Parse Application ID
* @param string $rest_key Parse REST API Key
* @param string $master_key Parse Master Key
* @param boolean $enableCurlExceptions Enable or disable Parse curl exceptions
*
* @return null
*/
public static function initialize($app_id, $rest_key, $master_key, $enableCurlExceptions = true)
{
if (!ParseObject::hasRegisteredSubclass('_User')) {
ParseUser::registerSubclass();
}
if (!ParseObject::hasRegisteredSubclass('_Role')) {
ParseRole::registerSubclass();
}
ParseInstallation::registerSubclass();
ParseSession::registerSubclass();
self::$applicationId = $app_id;
self::$restKey = $rest_key;
self::$masterKey = $master_key;
self::$enableCurlExceptions = $enableCurlExceptions;
if (!static::$storage) {
if (session_status() === PHP_SESSION_ACTIVE) {
self::setStorage(new ParseSessionStorage());
} else {
self::setStorage(new ParseMemoryStorage());
}
}
}