X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FAdmin%2FPage%2FMessageTemplates.php;h=44d4f0b0c2c792dd11e19d991968c73eca15cbd8;hb=d0bb8a2fb7c8f4e65f5d3974d00a126db24f1376;hp=065ed7056f63401548fdf75e0fd7ab5962f0dafa;hpb=afed0de9c0305abb1c011d6e87fd5e7a1ddee543;p=civicrm-core.git diff --git a/CRM/Admin/Page/MessageTemplates.php b/CRM/Admin/Page/MessageTemplates.php index 065ed7056f..44d4f0b0c2 100644 --- a/CRM/Admin/Page/MessageTemplates.php +++ b/CRM/Admin/Page/MessageTemplates.php @@ -38,8 +38,6 @@ */ class CRM_Admin_Page_MessageTemplates extends CRM_Core_Page_Basic { - public $useLivePageJS = TRUE; - /** * The action links that we need to display for the browse screen * @@ -54,6 +52,10 @@ class CRM_Admin_Page_MessageTemplates extends CRM_Core_Page_Basic { // set to the id that we’re reverting at the given moment (if we are) protected $_revertedId; + /** + * @param null $title + * @param null $mode + */ function __construct($title = NULL, $mode = NULL) { parent::__construct($title, $mode); @@ -134,6 +136,14 @@ class CRM_Admin_Page_MessageTemplates extends CRM_Core_Page_Basic { return self::$_links; } + /** + * @param CRM_Core_DAO $object + * @param int $action + * @param array $values + * @param array $links + * @param string $permission + * @param bool $forceAction + */ function action(&$object, $action, &$values, &$links, $permission, $forceAction = FALSE) { if ($object->workflow_id) { // do not expose action link for reverting to default if the template did not diverge or we just reverted it now @@ -170,6 +180,13 @@ class CRM_Admin_Page_MessageTemplates extends CRM_Core_Page_Basic { } } + /** + * @param null $args + * @param null $pageArgs + * @param null $sort + * + * @throws Exception + */ function run($args = NULL, $pageArgs = NULL, $sort = NULL) { // handle the revert action and offload the rest to parent if (CRM_Utils_Request::retrieve('action', 'String', $this) & CRM_Core_Action::REVERT) { @@ -210,6 +227,8 @@ class CRM_Admin_Page_MessageTemplates extends CRM_Core_Page_Basic { /** * Get user context. * + * @param null $mode + * * @return string user context. */ function userContext($mode = NULL) { @@ -219,7 +238,7 @@ class CRM_Admin_Page_MessageTemplates extends CRM_Core_Page_Basic { /** * browse all entities. * - * @param int $action + * @internal param int $action * * @return void * @access public