X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FAdmin%2FForm%2FExtensions.php;h=d22e27e8bc6da6612fa1ba65a8977d0f304dd9b4;hb=68383a402e0b8365c7c50e5304f746a2a9bfb5a7;hp=ffc48be1563b8df39a5d913a1be5966229513d40;hpb=95ca1e4e775ce88e3f371abe8390a3526ba537e7;p=civicrm-core.git diff --git a/CRM/Admin/Form/Extensions.php b/CRM/Admin/Form/Extensions.php index ffc48be156..d22e27e8bc 100644 --- a/CRM/Admin/Form/Extensions.php +++ b/CRM/Admin/Form/Extensions.php @@ -1,7 +1,7 @@ assign('id', $this->_id); $this->assign('key', $this->_key); - switch ($this->_action) { case CRM_Core_Action::ADD: case CRM_Core_Action::DELETE: @@ -70,7 +68,7 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { break; case CRM_Core_Action::UPDATE: - if (! CRM_Extension_System::singleton()->getBrowser()->isEnabled()) { + if (!CRM_Extension_System::singleton()->getBrowser()->isEnabled()) { CRM_Core_Error::fatal(ts('The system administrator has disabled this feature.')); } $info = CRM_Extension_System::singleton()->getBrowser()->getExtension($this->_key); @@ -88,11 +86,10 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { * Set default values for the form. * the default values are retrieved from the database * - * @access public * * @return void */ - function setDefaultValues() { + public function setDefaultValues() { $defaults = array(); return $defaults; } @@ -101,7 +98,6 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { * Build the form object * * @return void - * @access public */ public function buildQuickForm() { @@ -112,12 +108,12 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { switch ($this->_action) { case CRM_Core_Action::ADD: $buttonName = ts('Install'); - $title = ts('Install ' . $extName . '?'); + $title = ts('Install ' . $extName . '?'); break; case CRM_Core_Action::UPDATE: $buttonName = ts('Download and Install'); - $title = ts('Download and Install ' . $extName . '?'); + $title = ts('Download and Install ' . $extName . '?'); break; case CRM_Core_Action::DELETE: @@ -154,15 +150,17 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { /** * Global form rule * - * @param array $fields the input form values - * @param array $files the uploaded files if any - * @param array $self this object. + * @param array $fields + * The input form values. + * @param array $files + * The uploaded files if any. + * @param array $self + * This object. * - * @return true if no errors, else an array of errors - * @access public - * @static + * @return bool|array + * true if no errors, else an array of errors */ - static function formRule($fields, $files, $self) { + public static function formRule($fields, $files, $self) { $errors = array(); return empty($errors) ? TRUE : $errors; @@ -171,7 +169,6 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { /** * Process the form submission * - * @access public * * @return void */ @@ -182,7 +179,8 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { try { CRM_Extension_System::singleton()->getManager()->uninstall(array($this->_key)); CRM_Core_Session::setStatus("", ts('Extension Uninstalled'), "success"); - } catch (CRM_Extension_Exception_DependencyException $e) { + } + catch (CRM_Extension_Exception_DependencyException $e) { // currently only thrown for payment-processor dependencies CRM_Core_Session::setStatus(ts('Cannot uninstall this extension - there is at least one payment processor using the payment processor type provided by it.'), ts('Uninstall Error'), 'error'); } @@ -208,9 +206,10 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { 'version' => 3, 'key' => $this->_key, )); - if (! CRM_Utils_Array::value('is_error', $result, FALSE)) { + if (!CRM_Utils_Array::value('is_error', $result, FALSE)) { CRM_Core_Session::setStatus("", ts('Extension Upgraded'), "success"); - } else { + } + else { CRM_Core_Session::setStatus($result['error_message'], ts('Extension Upgrade Failed'), "error"); } } @@ -223,4 +222,3 @@ class CRM_Admin_Form_Extensions extends CRM_Admin_Form { ); } } -