本文整理汇总了PHP中Groups::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Groups::__construct方法的具体用法?PHP Groups::__construct怎么用?PHP Groups::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Groups
的用法示例。
在下文中一共展示了Groups::__construct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: osapiFileAppender
function __construct($config, $auth = NULL)
{
parent::__construct($config, $auth);
osapiLogger::setLevel(osapiLogger::INFO);
osapiLogger::setAppender(new osapiFileAppender("data/osapi.log"));
$host = getConfig($config, 'conext_host', TRUE);
$key = getConfig($config, 'conext_key', TRUE);
$secret = getConfig($config, 'conext_secret', TRUE);
$provider = new osapiProvider("https://{$host}/oauth/request_token", "https://{$host}/oauth/authorize", "https://{$host}/oauth/access_token", "https://{$host}/social/rest", "https://{$host}/social/rpc", 'SURFconext', TRUE, NULL);
$auth = new osapiOAuth2Legged($key, $secret, $this->auth->getUserId());
$this->osapi = new osapi($provider, $auth);
}
示例2: _construct
public function _construct()
{
parent::__construct();
}
示例3: array
/**
* Web Proxy policy constructor.
*/
function __construct()
{
parent::__construct('web_proxy', array('web_proxy_plugin'));
}
示例4: array
/**
* PPTP Server policy constructor.
*/
function __construct()
{
parent::__construct('pptpd', array('pptpd_plugin'));
}