1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
|
<?php
/**
* Copyright 2010-2014 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL-2). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl.
*
* @category Horde
* @copyright 2010-2014 Horde LLC
* @license http://www.horde.org/licenses/lgpl LGPL-2
* @package Horde
*/
/**
* Horde external API interface.
*
* This file defines Horde's external API interface. Other
* applications can interact with Horde through this API.
*
* @category Horde
* @copyright 2010-2014 Horde LLC
* @license http://www.horde.org/licenses/lgpl LGPL-2
* @package Horde
*/
class Horde_Api extends Horde_Registry_Api
{
/**
* Returns a list of adminstrative links.
*
* @return array Keys are link labels, values are array with these keys:
* - icon: (string) Graphic for page.
* - link: (string) Registry encoded link to page.
* - name: (string) Gettext label for page.
*/
public function admin_list()
{
$admin = array(
'configuration' => array(
'link' => '%application%/admin/config/',
'name' => _("_Configuration"),
'icon' => 'config'
),
'users' => array(
'link' => '%application%/admin/user.php',
'name' => _("_Users"),
'icon' => 'user'
),
'groups' => array(
'link' => '%application%/admin/groups.php',
'name' => _("_Groups"),
'icon' => 'group'
),
'perms' => array(
'link' => '%application%/admin/perms/',
'name' => _("_Permissions"),
'icon' => 'perms'
),
'locks' => array(
'link' => '%application%/admin/locks.php',
'name' => _("_Locks"),
'icon' => 'locked'
),
'alarms' => array(
'link' => '%application%/admin/alarms.php',
'name' => _("_Alarms"),
'icon' => 'alarm'
),
'sessions' => array(
'link' => '%application%/admin/sessions.php',
'name' => _("Sessions"),
'icon' => 'user'
),
'phpshell' => array(
'link' => '%application%/admin/phpshell.php',
'name' => _("P_HP Shell"),
'icon' => 'php'
),
'sqlshell' => array(
'link' => '%application%/admin/sqlshell.php',
'name' => _("S_QL Shell"),
'icon' => 'sql'
),
'cmdshell' => array(
'link' => '%application%/admin/cmdshell.php',
'name' => _("_CLI"),
'icon' => 'shell'
)
);
if (!empty($GLOBALS['conf']['activesync']['enabled'])) {
$admin['activesync'] = array(
'link' => '%application%/admin/activesync.php',
'name' => _("ActiveSync Devices"),
'icon' => 'mobile'
);
}
return $admin;
}
/**
* Returns a list of the installed and registered applications.
*
* @param array $filter An array of the statuses that should be returned.
* Defaults to non-hidden.
*
* @return array List of apps registered with Horde. If no applications
* are defined returns an empty array.
*/
public function listApps($filter = null)
{
return $GLOBALS['registry']->listApps($filter);
}
/**
* Returns all available registry APIs.
*
* @return array The API list.
*/
public function listAPIs()
{
return $GLOBALS['registry']->listAPIs();
}
/* Blocks. */
/**
* Returns a Horde_Block's title.
*
* @param string $app The block application name.
* @param string $name The block name (NOT the class name).
* @param array $params Block parameters.
*
* @return string The block title.
*/
public function blockTitle($app, $name, $params = array())
{
$class = $app . '_Block_' . basename($name);
try {
return $GLOBALS['injector']->getInstance('Horde_Core_Factory_BlockCollection')->create()->getBlock($app, $class, $params)->getTitle();
} catch (Horde_Exception $e) {
return $e->getMessage();
}
}
/**
* Returns a Horde_Block's content.
*
* @param string $app The block application name.
* @param string $name The block name (NOT the classname).
* @param array $params Block parameters.
*
* @return string The block content.
*/
public function blockContent($app, $name, $params = array())
{
$class = $app . '_Block_' . basename($name);
try {
return $GLOBALS['injector']->getInstance('Horde_Core_Factory_BlockCollection')->create()->getBlock($app, $class, $params)->getContent();
} catch (Horde_Exception $e) {
return $e->getMessage();
}
}
/**
* Returns a pretty printed list of all available blocks.
*
* @return array A hash with block IDs as keys and application plus block
* block names as values.
*/
public function blocks()
{
return $GLOBALS['injector']->getInstance('Horde_Core_Factory_BlockCollection')->create()->getBlocksList();
}
/* User data. */
/**
* Returns the value of the requested preference.
*
* @param string $app The application of the preference to retrieve.
* @param string $pref The name of the preference to retrieve.
*
* @return string The value of the preference, null if it doesn't exist.
*/
public function getPreference($app, $pref)
{
$pushed = $GLOBALS['registry']->pushApp($app);
$GLOBALS['registry']->loadPrefs($app);
$value = $GLOBALS['prefs']->getValue($pref);
if ($pushed) {
$GLOBALS['registry']->popApp();
}
return $value;
}
/**
* Sets a preference to the specified value, if the preference is allowed
* to be modified.
*
* @param string $app The application of the preference to modify.
* @param string $pref The name of the preference to modify.
* @param string $val The new value for this preference.
*/
public function setPreference($app, $pref, $value)
{
$pushed = $GLOBALS['registry']->pushApp($app);
$GLOBALS['registry']->loadPrefs($app);
$value = $GLOBALS['prefs']->setValue($pref, $value);
if ($pushed) {
$GLOBALS['registry']->popApp();
}
}
/**
* Removes user data.
*
* @param string $user Name of user to remove data for.
* @param string $app Remove data from this application. If boolean
* true, removes all applications. If boolean false,
* removes only base Horde data.
*
* @throws Horde_Exception
*/
public function removeUserData($user, $app = false)
{
if ($app === true) {
$app = null;
} elseif ($app === false || !strlen($app)) {
$app = false;
}
$GLOBALS['registry']->removeUserData($user, $app);
}
/* Groups. */
/**
* Adds a group to the groups system.
*
* @param string $name The group's name.
*
* @return mixed The group's ID.
* @throws Horde_Exception
*/
public function addGroup($name)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to add groups."));
}
return $GLOBALS['injector']
->getInstance('Horde_Group')
->create($name);
}
/**
* Removes a group from the groups system.
*
* @param mixed $group The group ID.
*
* @throws Horde_Exception
*/
public function removeGroup($group)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to delete groups."));
}
$GLOBALS['injector']->getInstance('Horde_Group')->remove($group);
}
/**
* Adds a user to a group.
*
* @param mixed $group The group ID.
* @param string $user The user to add.
*
* @throws Horde_Exception
*/
public function addUserToGroup($group, $user)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to change groups."));
}
$GLOBALS['injector']
->getInstance('Horde_Group')
->addUser($group, $user);
}
/**
* Removes a user from a group.
*
* @param mixed $group The group ID.
* @param string $user The user to add.
*
* @throws Horde_Exception
*/
public function removeUserFromGroup($group, $user)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to change groups."));
}
$GLOBALS['injector']
->getInstance('Horde_Group')
->removeUser($group, $user);
}
/**
* Returns a list of users that are part of this group (and only this
* group).
*
* @param mixed $group The group ID.
*
* @return array The user list.
* @throws Horde_Exception
*/
public function listUsersOfGroup($group)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to list users of groups."));
}
return $GLOBALS['injector']
->getInstance('Horde_Group')
->listUsers($group);
}
/* Shares. */
/**
* Adds a share to the shares system.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param string $shareTitle The share's human readable title.
* @param string $userName The share's owner.
*
* @throws Horde_Exception
*/
public function addShare($scope, $shareName, $shareTitle, $userName)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to add shares."));
}
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->newShare($GLOBALS['registry']->getAuth(), $shareName, $shareTitle);
$share->set('owner', $userName);
$shares->addShare($share);
}
/**
* Removes a share from the shares system permanently.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
*
* @throws Horde_Exception
*/
public function removeShare($scope, $shareName)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to delete shares."));
}
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->getShare($shareName);
$shares->removeShare($share);
}
/**
* Returns an array of all shares that $userName is the owner of.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $userName The share's owner.
*
* @return array The list of shares.
* @throws Horde_Exception
*/
public function listSharesOfOwner($scope, $userName)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to list shares."));
}
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share_list = $shares->listShares($userName,
array('perm' => Horde_Perms::SHOW,
'attributes' => $userName));
$myshares = array();
foreach ($share_list as $share) {
$myshares[] = $share->getName();
}
return $myshares;
}
/**
* Gives a user certain privileges for a share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param string $userName The user's name.
* @param array $permissions A list of permissions (show, read, edit,
* delete).
*
* @throws Horde_Exception
*/
public function addUserPermissions($scope, $shareName, $userName,
$permissions)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to change shares."));
}
$share = $GLOBALS['injector']
->getInstance('Horde_Core_Factory_Share')
->create($scope)
->getShare($shareName);
$perm = $share->getPermission();
foreach ($permissions as $permission) {
$permission = Horde_String::upper($permission);
if (defined('Horde_Perms::' . $permission)) {
$perm->addUserPermission($userName, constant('Horde_Perms::' . $permission), false);
}
}
$share->setPermission($perm);
}
/**
* Gives a group certain privileges for a share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param mixed $groupId The group ID.
* @param array $permissions A list of permissions (show, read, edit,
* delete).
*
* @throws Horde_Exception
*/
public function addGroupPermissions($scope, $shareName, $groupId,
$permissions)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to change shares."));
}
$share = $GLOBALS['injector']
->getInstance('Horde_Core_Factory_Share')
->create($scope)
->getShare($shareName);
$perm = $share->getPermission();
foreach ($permissions as $permission) {
$permission = Horde_String::upper($permission);
if (defined('Horde_Perms::' . $permission)) {
$perm->addGroupPermission($groupId, constant('Horde_Perms::' . $permission), false);
}
}
$share->setPermission($perm);
}
/**
* Removes a user from a share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param string $userName The user's name.
*
* @throws Horde_Exception
*/
public function removeUserPermissions($scope, $shareName, $userName)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to change shares."));
}
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->getShare($shareName);
$share->removeUser($userName);
}
/**
* Removes a group from a share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param mixed $groupId The group ID.
*
* @throws Horde_Exception
*/
public function removeGroupPermissions($scope, $shareName, $groupId)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to change shares."));
}
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->getShare($shareName);
$share->removeGroup($groupId);
}
/**
* Returns an array of all user permissions on a share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param string $userName The user's name.
*
* @return array All user permissions for this share.
* @throws Horde_Exception
*/
public function listUserPermissions($scope, $shareName, $userName)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to list share permissions."));
}
$perm_map = array(Horde_Perms::SHOW => 'show',
Horde_Perms::READ => 'read',
Horde_Perms::EDIT => 'edit',
Horde_Perms::DELETE => 'delete');
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->getShare($shareName);
$perm = $share->getPermission();
$permissions = $perm->getUserPermissions();
if (empty($permissions[$userName])) {
return array();
}
$user_permissions = array();
foreach (array_keys(Horde_Perms::integerToArray($permissions[$userName])) as $permission) {
$user_permissions[] = $perm_map[$permission];
}
return $user_permissions;
}
/**
* Returns an array of all group permissions on a share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param string $groupName The group's name.
*
* @return array All group permissions for this share.
* @throws Horde_Exception
*/
public function listGroupPermissions($scope, $shareName, $groupName)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to list share permissions."));
}
$perm_map = array(Horde_Perms::SHOW => 'show',
Horde_Perms::READ => 'read',
Horde_Perms::EDIT => 'edit',
Horde_Perms::DELETE => 'delete');
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->getShare($shareName);
$perm = $share->getPermission();
$permissions = $perm->getGroupPermissions();
if (empty($permissions[$groupName])) {
return array();
}
$group_permissions = array();
foreach (array_keys(Horde_Perms::integerToArray($permissions[$groupName])) as $permission) {
$group_permissions[] = $perm_map[$permission];
}
return $group_permissions;
}
/**
* Returns a list of users which have have certain permissions on a share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param array $permissions A list of permissions (show, read, edit,
* delete).
*
* @return array List of users with the specified permissions.
* @throws Horde_Exception
*/
public function listUsersOfShare($scope, $shareName, $permissions)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to list users of shares."));
}
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->getShare($shareName);
$perm = 0;
foreach ($permissions as $permission) {
$permission = Horde_String::upper($permission);
if (defined('Horde_Perms::' . $permission)) {
$perm &= constant('Horde_Perms::' . $permission);
}
}
return $share->listUsers($perm);
}
/**
* Returns a list of groups which have have certain permissions on a
* share.
*
* @param string $scope The name of the share root, e.g. the
* application that the share belongs to.
* @param string $shareName The share's name.
* @param array $permissions A list of permissions (show, read, edit,
* delete).
*
* @return array List of groups with the specified permissions.
* @throws Horde_Exception
*/
public function listGroupsOfShare($scope, $shareName, $permissions)
{
if (!$GLOBALS['registry']->isAdmin()) {
throw new Horde_Exception(_("You are not allowed to list groups of shares."));
}
$shares = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Share')->create($scope);
$share = $shares->getShare($shareName);
$perm = 0;
foreach ($permissions as $permission) {
$permission = Horde_String::upper($permission);
if (defined('Horde_Perms::' . $permission)) {
$perm &= constant('Horde_Perms::' . $permission);
}
}
return $share->listGroups($perm);
}
/**
* Returns a list of ActiveSync devices that are partnered with Horde.
*
* @param array $filter An array of parameters to filter on:
* - user: Only return devices owned by user. If not present will default
* to returning devices for current user only. If present, but
* empty and current user is admin, will return all devices.
* Otherwise, will return devices matching the parameter (must be
* admin to list users other than current).
*
* @return array List of device properties.
* @since 5.2.0
*/
public function listActiveSyncDevices($filter = array())
{
global $registry, $injector, $conf;
if (empty($conf['activesync']['enabled'])) {
return array();
}
$state = $injector->getInstance('Horde_ActiveSyncState');
$state->setLogger($injector->getInstance('Horde_Log_Logger'));
if (!isset($filter['user'])) {
$filter['user'] = $registry->getAuth();
} elseif (empty($filter['user'])) {
if (!$registry->isAdmin()) {
throw new Horde_Exception_PermissionDenied();
}
$filter['user'] = null;
} elseif ($filter['user'] != $registry->getAuth() && !$registry->isAdmin()) {
throw new Horde_Exception_PermissionDenied();
}
try {
$devices = $state->listDevices($filter['user']);
} catch (Horde_ActiveSync_Exception $e) {
throw new Horde_Exception($e);
}
foreach ($devices as &$device) {
$device['device_properties'] = unserialize($device['device_properties']);
$device['last_synctime'] = $state->getLastSyncTimestamp($device['device_id']);
}
return $devices;
}
/**
* Perform an administrative action on a single paired ActiveSync device.
*
* @param string $action The action to perform. One of:
* WIPE, CANCEL_WIPE, REMOVE.
* @param string $deviceid The device's deviceid.
* @param string $user Restrict actions to only this user's
* account on the device in the case where the
* device may have multiple user accounts on this
* server. If empty, all users' state information
* will be removed. If a non-admin calls this
* method, this will always be set to the current
* horde username.
* @return boolean
* @throws Horde_Exception
*/
public function performActiveSyncDeviceAction($action, $deviceid, $user = null)
{
global $injector, $conf, $registry;
if (empty($conf['activesync']['enabled'])) {
throw new Horde_Exception(_("ActiveSync not activated."));
}
if (!in_array($action, array('WIPE', 'CANCEL_WIPE', 'REMOVE'))) {
throw new Horde_Exception(_("Unsupported action."));
}
$state = $injector->getInstance('Horde_ActiveSyncState');
$state->setLogger($injector->getInstance('Horde_Log_Logger'));
// If not an admin, ensure the device is attached to the $user.
// Otherwise, any user could wipe any device if the deviceid is known.
if (!$registry->isAdmin()) {
$user = $registry->getAuth();
if (!$state->deviceExists($deviceid, $user)) {
throw new Horde_Exception_PermissionDenied();
}
}
switch ($action) {
case 'WIPE':
try {
$state->setDeviceRWStatus($deviceid, Horde_ActiveSync::RWSTATUS_PENDING);
} catch (Horde_ActiveSync_Exception $e) {
throw new Horde_Exception($e);
}
return true;
case 'CANCEL_WIPE':
try {
$state->setDeviceRWStatus($deviceid, Horde_ActiveSync::RWSTATUS_OK);
} catch (Horde_ActiveSync_Exception $e) {
throw new Horde_Exception($e);
}
return true;
case 'REMOVE':
try {
$state->removeState(array(
'devId' => $deviceid,
'user' => $user)
);
} catch (Horde_ActiveSync_Exception $e) {
throw new Horde_Exception($e);
}
return true;
}
}
/**
* Perform an admistrative action on ALL paired ActiveSync devices.
*
* @param string $action The action. Currently, only 'RESET' is supported.
* - 'RESET': Causes all state for all devices to be removed. I.e., sets
* the synckey for all devices to 0.
*
* @return boolean
*/
public function performBulkActiveSyncDeviceAction($action)
{
global $injector, $conf, $registry;
if (!$registry->isAdmin()) {
throw new Horde_Exception_PermissionDenied();
}
if (empty($conf['activesync']['enabled'])) {
throw new Horde_Exception(_("ActiveSync not activated."));
}
if (!in_array($action, array('RESET'))) {
throw new Horde_Exception(_("Unsupported action."));
}
try {
$injector->getInstance('Horde_ActiveSyncState')->resetAllPolicyKeys();
} catch (Horde_ActiveSync_Exception $e) {
throw new Horde_Exception($e);
}
return true;
}
}
|