Skip to content
Snippets Groups Projects
ajax.tips.php 1.12 KiB
Newer Older
  • Learn to ignore specific revisions
  • <?php
    /*********************************************************************
        ajax.tips.php
    
        AJAX interface for help popovers. Initially written to allow
        translations of the installer help popups
    
        Peter Rotich <peter@osticket.com>
        Jared Hancock <jared@osticket.com>
        Copyright (c)  2006-2013 osTicket
        http://www.osticket.com
    
        Released under the GNU General Public License WITHOUT ANY WARRANTY.
        See LICENSE.TXT for details.
    
        vim: expandtab sw=4 ts=4 sts=4:
    **********************************************************************/
    if(!defined('INCLUDE_DIR')) die('!');
    
    require_once(INCLUDE_DIR.'class.i18n.php');
    
    class HelpTipAjaxAPI extends AjaxController {
        function getTipsJson($namespace, $lang='en_US') {
            $i18n = new Internationalization($lang);
            $tips = $i18n->getTemplate("help/tips/$namespace.yaml");
    
            if (!$tips || !($data = $tips->getData()))
                Http::response(404, 'Help content not available');
    
            return $this->json_encode($data);
        }
    
        function getTipsJsonForLang($lang, $namespace) {
            return $this->getTipJson($namespace, $lang);
        }
    }
    
    ?>