* @param object $form
* @param integer $gid id of group of profile
* @param bool $emailPresent true if the profile field has email(primary)
- * @param const $action
+ * @param \const|int $action
*
* @return FALSE|void WTF
*
* @param string $entityTable name of the entity table usually 'civicrm_contact'
*
* @return array(
- ) reference $tag array of catagory id's the contact belongs to.
+ ) reference $tag array of category id's the contact belongs to.
*
* @access public
* @static
* @param array $params (reference ) an assoc array of name/value pairs
* @param array $defaults (reference ) an assoc array to hold the flattened values
*
- * @return object CRM_Core_BAO_LocaationType object on success, null otherwise
+ * @return object CRM_Core_BAO_LocationType object on success, null otherwise
* @access public
* @static
*/
*
* @internal param string $entityTable name of the entity table usually 'civicrm_contact'
* @internal param int $entityID id of the entity usually the contactID.
- * @return array( ) reference $tag array of catagory id's the contact belongs to.
+ * @return array( ) reference $tag array of category id's the contact belongs to.
*
* @access public
* @static
*
* @param string $group (required) The group name of the item
* @param string $name (required) The name of the setting
- * @param int $componentID The optional component ID (so componenets can share the same name space)
+ * @param int $componentID The optional component ID (so components can share the same name space)
* @param int $contactID If set, this is a contactID specific setting, else its a global setting
* @param bool|int $load if true, load from local cache (typically memcache)
*
}
/**
- * Funtion to determine of we show overlay profile or not
+ * Function to determine of we show overlay profile or not
*
* @return boolean true if profile should be shown else false
* @static
* - PEAR_Exception(string $message, PEAR_Error $cause, int $code);
* - PEAR_Exception(string $message, array $causes);
* - PEAR_Exception(string $message, array $causes, int $code);
+ *
* @param string exception message
- * @param int|Exception|PEAR_Error|array|null exception cause
- * @param int|null exception code or null
+ * @param int $code
+ * @param Exception $previous
+ *
+ * @internal param array|\Exception|int|null|\PEAR_Error $exception cause
+ * @internal param int|null $exception code or null
*/
public function __construct($message = NULL, $code = 0, Exception$previous = NULL) {
parent::__construct($message, $code, $previous);
* e.g. civimail.cronjob.JOB_ID
* @param int $timeout the number of seconds to wait to get the lock. 1 if not set
* @param boolean $serverWideLock should this lock be applicable across your entire mysql server
- * this is useful if you have mutliple sites running on the same
+ * this is useful if you have multiple sites running on the same
* mysql server and you want to limit the number of parallel cron
* jobs - CRM-91XX
*
* for this user
*
* @param string $groupType type of group(Access/Mailing)
- * @param bool|\boolen $excludeHidden exclude hidden groups.
+ * @param bool $excludeHidden exclude hidden groups.
*
* @access public
*
CONST
// use print.tpl and bypass the CMS. Civi prints a valid html file
PRINT_PAGE = 1,
- // this and all the below bypasses the CMS html surronding it and assumes we will embed this within other pages
+ // this and all the below bypasses the CMS html surrounding it and assumes we will embed this within other pages
PRINT_SNIPPET = 2,
// sends the generated html to the chosen pdf engine
PRINT_PDF = 3,
*
* @param object $controller the controller for this state machine
*
- * @param const $action
+ * @param \const|int $action
*
* @return \CRM_Core_StateMachine
@access public