コード例 #1
0
/*
 * Copyright 2015 AT&T
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
session_start();
require_once __DIR__ . '/common.php';
require_once __DIR__ . '/../lib/AAB/AABService.php';
use Att\Api\AAB\AABService;
$arr = null;
try {
    envinit();
    $aabService = new AABService(getFqdn(), getSessionToken());
    $gid = $_POST['deleteGroupId'];
    $aabService->deleteGroup($gid);
    $arr = array('success' => true, 'text' => 'Successfully deleted group');
} catch (Exception $e) {
    $arr = array('success' => false, 'text' => $e->getMessage());
}
echo json_encode($arr);
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
コード例 #2
0
 private function _handleDeleteGroup()
 {
     $vnames = array('groupId', 'deleteGroup');
     $this->copyToSession($vnames);
     if (!isset($_SESSION['deleteGroup'])) {
         return;
     }
     $gid = $_SESSION['groupId'];
     try {
         $aabSrvc = new AABService($this->apiFQDN, $this->getSessionToken());
         $aabSrvc->deleteGroup($gid);
         $this->results[C_DELETE_GROUP] = true;
         $this->clearSession($vnames);
     } catch (Exception $e) {
         $this->errors[C_GROUP_ERROR] = $e->getMessage();
         $this->clearSession($vnames);
     }
 }