Merge pull request #17641 from MegaphoneJon/core-1590
[civicrm-core.git] / CRM / Core / Page / Inline / Help.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 * @package CRM
ca5cec67 14 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
15 */
16
17/**
18 * This loads a smarty help file via ajax and returns as html
19 */
20class CRM_Core_Page_Inline_Help {
518fa0ee 21
00be9182 22 public function run() {
6a488035
TO
23 $args = $_REQUEST;
24 if (!empty($args['file']) && strpos($args['file'], '..') === FALSE) {
25 $file = $args['file'] . '.hlp';
6eea17da 26 $additionalTPLFile = $args['file'] . '.extra.hlp';
6a488035
TO
27 $smarty = CRM_Core_Smarty::singleton();
28 $smarty->assign('id', $args['id']);
29 CRM_Utils_Array::remove($args, 'file', 'class_name', 'type', 'q', 'id');
30 foreach ($args as &$arg) {
31 $arg = strip_tags($arg);
32 }
33 $smarty->assign('params', $args);
6eea17da 34
23d7e1c1 35 $output = $smarty->fetch($file);
6eea17da
E
36 $extraoutput = '';
37 if ($smarty->template_exists($additionalTPLFile)) {
6eea17da 38 $extraoutput .= trim($smarty->fetch($additionalTPLFile));
23d7e1c1
CW
39 // Allow override param to replace default text e.g. {hlp id='foo' override=1}
40 if ($smarty->get_template_vars('override_help_text')) {
41 $output = '';
42 }
6eea17da 43 }
23d7e1c1 44 exit($output . $extraoutput);
6a488035
TO
45 }
46 }
96025800 47
6a488035 48}