本文整理汇总了PHP中Scalr_UI_Controller类的典型用法代码示例。如果您正苦于以下问题:PHP Scalr_UI_Controller类的具体用法?PHP Scalr_UI_Controller怎么用?PHP Scalr_UI_Controller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Scalr_UI_Controller类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: hasAccess
/**
* {@inheritdoc}
* @see Scalr_UI_Controller::hasAccess()
*/
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_OPENSTACK_VOLUMES);
}
示例2: hasAccess
/**
* {@inheritdoc}
* @see Scalr_UI_Controller::hasAccess()
*/
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_ADMINISTRATION_SCRIPTS);
}
示例3: hasAccess
/**
* {@inheritdoc}
* @see Scalr_UI_Controller::hasAccess()
*/
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed([Acl::RESOURCE_FARMS, Acl::RESOURCE_TEAM_FARMS, Acl::RESOURCE_OWN_FARMS], Acl::PERM_FARMS_STATISTICS);
}
示例4: hasAccess
/**
* {@inheritdoc}
* @see Scalr_UI_Controller::hasAccess()
*/
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_FARMS_ROLES);
}
示例5: hasAccess
/**
* {@inheritdoc}
* @see Scalr_UI_Controller::hasAccess()
*/
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_DISCOVERY_SERVERS) && $this->request->isAllowed(Acl::RESOURCE_DISCOVERY_SERVERS, Acl::PERM_DISCOVERY_SERVERS_IMPORT);
}
示例6: internalRequest
/**
* Get internal request to the controller's action ignoring checking aliases
*
* @param string $uri
* @param array $parameters
* @return mixed Returns raw response as it is returned by action
*/
protected function internalRequest($uri, array $parameters = array())
{
$aUri = parse_url($uri);
call_user_func_array(array($this, 'getRequest'), array_merge(array(Scalr_UI_Request::REQUEST_TYPE_UI, null), func_get_args()));
$path = explode('/', trim($aUri['path'], '/'));
$method = array_pop($path) . 'Action';
$subController = ucfirst(array_pop($path));
$controller = 'Scalr_UI_Controller' . (count($path) ? '_' . join('_', array_map('ucfirst', $path)) : '');
$c = \Scalr_UI_Controller::loadController($subController, $controller, true);
$c->{$method}();
// TODO: use $c->callActionMethod($method);
$content = Scalr_UI_Response::getInstance()->getResponse();
$arr = @json_decode($content, true);
return $arr === null ? $content : $arr;
}
示例7: checkLifeCycle
public function checkLifeCycle($widgets)
{
$result = array();
foreach ($widgets as $id => $object) {
$name = str_replace('dashboard.', '', $object['name']);
try {
$widget = Scalr_UI_Controller::loadController($name, 'Scalr_UI_Controller_Dashboard_Widget');
} catch (Exception $e) {
continue;
}
try {
$result[$id]['widgetContent'] = $widget->getContent($object['params']);
} catch (ADODB_Exception $e) {
\Scalr::logException($e);
$result[$id]['widgetError'] = 'Database error';
} catch (Exception $e) {
$result[$id]['widgetError'] = $e->getMessage();
}
}
return $result;
}
示例8: hasAccess
/**
* {@inheritdoc}
* @see Scalr_UI_Controller::hasAccess()
*/
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_GCE_PERSISTENT_DISKS);
}
示例9: hasAccess
/**
* {@inheritdoc}
* @see Scalr_UI_Controller::hasAccess()
*/
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_ANALYTICS_ENVIRONMENT);
}
示例10: hasAccess
public function hasAccess()
{
$enabledPlatforms = $this->getEnvironment()->getEnabledPlatforms();
if (!in_array(SERVER_PLATFORMS::AZURE, $enabledPlatforms)) {
throw new Exception('You need to enable Azure platform for current environment');
}
return parent::hasAccess();
}
示例11: hasAccess
public function hasAccess()
{
if (parent::hasAccess()) {
return $this->user->getType() == Scalr_Account_User::TYPE_ACCOUNT_OWNER || $this->user->isTeamOwner() ? true : false;
} else {
return false;
}
}
示例12: hasAccess
public function hasAccess()
{
if (!parent::hasAccess() || !$this->request->isAllowed(Acl::RESOURCE_AWS_RDS)) {
return false;
}
if (!in_array(SERVER_PLATFORMS::EC2, $this->getEnvironment()->getEnabledPlatforms())) {
throw new Exception("You need to enable RDS platform for current environment");
}
return true;
}
示例13: hasAccess
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_ENVADMINISTRATION_GOVERNANCE);
}
示例14: hasAccess
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_DEPLOYMENTS_SOURCES);
}
示例15: hasAccess
public function hasAccess()
{
return parent::hasAccess() && $this->request->isAllowed(Acl::RESOURCE_SECURITY_SSH_KEYS);
}