CONTROL_HELP::str_process PHP Method

str_process() private method

private str_process ( )
    private function str_process()
    {
        if (file_exists(BG_PATH_LANG . $this->config["lang"] . "/help/" . $this->mod . "/" . $this->act_get . ".php")) {
            $_str_content = (include_once BG_PATH_LANG . $this->config["lang"] . "/help/" . $this->mod . "/" . $this->act_get . ".php");
        } else {
            $_str_content = "";
        }
        $_str_content = str_ireplace("{images}", BG_URL_STATIC . "help/" . BG_DEFAULT_UI . "/" . $this->mod . "/", $_str_content);
        $_str_content = str_ireplace("{BG_URL_HELP}", BG_URL_HELP, $_str_content);
        if (BG_DEFAULT_UI != "default") {
            $_str_content = str_ireplace("baigo", BG_DEFAULT_UI, $_str_content);
        }
        return $_str_content;
    }