|
|
@@ -132,3 +132,15 @@ if($action == 'gqu')
|
|
|
}
|
|
|
print_r($r);
|
|
|
}
|
|
|
+
|
|
|
+// Get AutoSSL Informations
|
|
|
+if($action == 'gas')
|
|
|
+{
|
|
|
+ $r = $cwp7->getAutoSSL($args['account_name']);
|
|
|
+ if(isset($r['error_msg'])) {
|
|
|
+ echo 'Error : could not fetch AutoSSL information of '. $args['account_name'] . ' :-(' . PHP_EOL;
|
|
|
+ } else {
|
|
|
+ echo 'OK : got the AutoSSL infos for account ' . $args['account_name'] . ' :-)' . PHP_EOL;
|
|
|
+ }
|
|
|
+ print_r($r);
|
|
|
+}
|