Fix an HTML error in Calculate.tpl
[civicrm-core.git] / templates / CRM / common / accesskeys.hlp
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
fee14197 3 | CiviCRM version 5 |
6a488035 4 +--------------------------------------------------------------------+
6b83d5bd 5 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
6a488035 26{htxt id="accesskeys"}
b30809e4
CW
27 {php}
28 $ua = strtolower($_SERVER['HTTP_USER_AGENT']);
29 if (strstr($ua, 'mac')) {
30 $key = '<span>CTRL</span>+<span>ALT</span>';
31 }
32 else {
33 $key = strstr($ua, 'firefox') ? '<span>ALT</span>+<span>SHIFT</span>' : '<span>ALT</span>';
34 }
35 $this->assign('accessKey', $key);
36 {/php}
37 <p></p>
38 <ul id="crmAccessKeyList">
39 <li>{$accessKey}+<span>E</span> - {ts}Edit Contact (View Contact Summary Page){/ts}</li>
40 <li>{$accessKey}+<span>S</span> - {ts}Save Button{/ts}</li>
41 <li>{$accessKey}+<span>N</span> - {ts}Add a new record in each tab (Activities, Tags,..etc){/ts}</li>
42 <li>{$accessKey}+<span>M</span> - {ts}Open the CiviCRM menubar{/ts}</li>
43 <li>{$accessKey}+<span>Q</span> - {ts}Quicksearch{/ts}</li>
44 </ul>
45 {literal}<style type="text/css">
46 #crmAccessKeyList li {
47 margin-top: 5px;
48 }
49 #crmAccessKeyList span {
50 display: inline-block;
51 background: grey;
52 font-size: 80%;
53 border: 2px groove #eee;
54 padding: 0 4px;
55 }
56 </style>{/literal}
6a488035 57{/htxt}