예제 #1
0
function quickReply()
{
    global $vbulletin;
    // *********************************************************************************
    // build quick reply if appropriate
    if ($show['quickreply']) {
        require_once DIR . '/includes/functions_editor.php';
        $show['wysiwyg'] = $forum['allowbbcode'] ? is_wysiwyg_compatible() : 0;
        $istyles_js = construct_editor_styles_js();
        // set show signature hidden field
        $showsig = iif($vbulletin->userinfo['signature'], 1, 0);
        // set quick reply initial id
        if ($threadedmode == 1) {
            $qrpostid = $curpostid;
            $show['qr_require_click'] = 0;
        } else {
            if ($vbulletin->options['quickreply'] == 2) {
                $qrpostid = 0;
                $show['qr_require_click'] = 1;
            } else {
                $qrpostid = 'who cares';
                $show['qr_require_click'] = 0;
            }
        }
        $editorid = construct_edit_toolbar('', 0, $foruminfo['forumid'], $foruminfo['allowsmilies'] ? 1 : 0, 1, false, 'qr');
        $messagearea = "\n\t\t\t<script type=\"text/javascript\">\n\t\t\t<!--\n\t\t\t\tvar threaded_mode = {$threadedmode};\n\t\t\t\tvar require_click = {$show['qr_require_click']};\n\t\t\t\tvar is_last_page = {$show['allow_ajax_qr']}; // leave for people with cached JS files\n\t\t\t\tvar allow_ajax_qr = {$show['allow_ajax_qr']};\n\t\t\t\tvar ajax_last_post = " . intval($effective_lastpost) . ";\n\t\t\t// -->\n\t\t\t</script>\n\t\t\t{$messagearea}\n\t\t";
        if (is_browser('mozilla') and $show['wysiwyg'] == 2) {
            // Mozilla WYSIWYG can't have the QR collapse button,
            // so remove that and force QR to be expanded
            $show['quickreply_collapse'] = false;
            unset($vbcollapse["collapseobj_quickreply"], $vbcollapse["collapseimg_quickreply"], $vbcollapse["collapsecel_quickreply"]);
        } else {
            $show['quickreply_collapse'] = true;
        }
    } else {
        if ($show['ajax_js']) {
            require_once DIR . '/includes/functions_editor.php';
            $vBeditJs = construct_editor_js_arrays();
            eval('$vBeditTemplate[\'clientscript\'] = "' . fetch_template('editor_clientscript') . '";');
        }
    }
}
예제 #2
0
        }
    }
    $editorid = construct_edit_toolbar('', 0, $foruminfo['forumid'], $foruminfo['allowsmilies'] ? 1 : 0, 1, false, 'qr');
    $messagearea = "\n\t\t<script type=\"text/javascript\">\n\t\t<!--\n\t\t\tvar threaded_mode = {$threadedmode};\n\t\t\tvar require_click = {$show['qr_require_click']};\n\t\t\tvar is_last_page = {$show['allow_ajax_qr']}; // leave for people with cached JS files\n\t\t\tvar allow_ajax_qr = {$show['allow_ajax_qr']};\n\t\t\tvar ajax_last_post = " . intval($effective_lastpost) . ";\n\t\t// -->\n\t\t</script>\n\t\t{$messagearea}\n\t";
    if (is_browser('mozilla') and $show['wysiwyg'] == 2) {
        // Mozilla WYSIWYG can't have the QR collapse button,
        // so remove that and force QR to be expanded
        $show['quickreply_collapse'] = false;
        unset($vbcollapse["collapseobj_quickreply"], $vbcollapse["collapseimg_quickreply"], $vbcollapse["collapsecel_quickreply"]);
    } else {
        $show['quickreply_collapse'] = true;
    }
} else {
    if ($show['ajax_js']) {
        require_once DIR . '/includes/functions_editor.php';
        $vBeditJs = construct_editor_js_arrays();
        // check that $editor_css has been built
        if (!isset($GLOBALS['editor_css'])) {
            eval('$GLOBALS[\'editor_css\'] = "' . fetch_template('editor_css') . '";');
            $GLOBALS['headinclude'] .= "<!-- Editor CSS automatically added by " . substr(strrchr(__FILE__, DIRECTORY_SEPARATOR), 1) . " at line " . __LINE__ . " -->\n" . $GLOBALS['editor_css'];
        }
        eval('$vBeditTemplate[\'clientscript\'] = "' . fetch_template('editor_clientscript') . '";');
    }
}
$show['quickedit'] = ($vbulletin->options['quickedit'] and !$show['threadedmode']);
// #############################################################################
// make a displayable version of the thread notes
if (!empty($thread['notes'])) {
    $thread['notes'] = str_replace('. ', ".\\n", $thread['notes']);
    $shownotes = true;
} else {
예제 #3
0
/**
* Prepares the templates for a message editor
*
* @param	string	The text to be initially loaded into the editor
* @param	boolean	Is the initial text HTML (rather than plain text or bbcode)?
* @param	mixed	Forum ID of the forum into which we are posting. Special rules apply for values of 'privatemessage', 'usernote', 'calendar', 'announcement' and 'nonforum'
* @param	boolean	Allow smilies?
* @param	boolean	Parse smilies in the text of the message?
* @param	boolean	Allow attachments?
* @param	string	Editor type - either 'fe' for full editor or 'qr' for quick reply
* @param	string	Force the editor to use the specified value as its editorid, rather than making one up
*
* @return	string	Editor ID
*/
function construct_edit_toolbar($text = '', $ishtml = false, $forumid = 0, $allowsmilie = true, $parsesmilie = true, $can_attach = false, $editor_type = 'fe', $force_editorid = '')
{
    // standard stuff
    global $vbulletin, $vbphrase, $stylevar, $show;
    // templates generated by this function
    global $messagearea, $smiliebox, $disablesmiliesoption, $checked, $vBeditTemplate;
    // misc stuff built by this function
    global $istyles;
    // counter for editorid
    static $editorcount = 0;
    // determine what we can use
    // this was moved up here as I need the switch to determine if bbcode is enabled
    // to determine if a toolbar is usable
    if ($forumid == 'signature') {
        $sig_perms =& $vbulletin->userinfo['permissions']['signaturepermissions'];
        $sig_perms_bits =& $vbulletin->bf_ugp_signaturepermissions;
        $can_toolbar = $sig_perms & $sig_perms_bits['canbbcode'] ? true : false;
        $show['img_bbcode'] = $sig_perms & $sig_perms_bits['allowimg'] ? true : false;
        $show['font_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodefont'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_FONT) ? true : false;
        $show['size_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodesize'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_SIZE) ? true : false;
        $show['color_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodecolor'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_COLOR) ? true : false;
        $show['basic_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodebasic'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_BASIC) ? true : false;
        $show['align_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodealign'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_ALIGN) ? true : false;
        $show['list_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodelist'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_LIST) ? true : false;
        $show['code_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodecode'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_CODE) ? true : false;
        $show['html_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodehtml'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_HTML) ? true : false;
        $show['php_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodephp'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_PHP) ? true : false;
        $show['url_bbcode'] = ($sig_perms & $sig_perms_bits['canbbcodelink'] and $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_URL) ? true : false;
        $show['quote_bbcode'] = $sig_perms & $sig_perms_bits['canbbcodequote'] ? true : false;
    } else {
        require_once DIR . '/includes/class_bbcode.php';
        $show['font_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_FONT ? true : false;
        $show['size_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_SIZE ? true : false;
        $show['color_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_COLOR ? true : false;
        $show['basic_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_BASIC ? true : false;
        $show['align_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_ALIGN ? true : false;
        $show['list_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_LIST ? true : false;
        $show['code_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_CODE ? true : false;
        $show['html_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_HTML ? true : false;
        $show['php_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_PHP ? true : false;
        $show['url_bbcode'] = $vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_URL ? true : false;
        $show['quote_bbcode'] = true;
        // can't disable this anywhere but in sigs
    }
    $ajax_extra = '';
    $allow_custom_bbcode = true;
    if (empty($forumid)) {
        $forumid = 'nonforum';
    }
    switch ($forumid) {
        case 'privatemessage':
            $can_toolbar = $vbulletin->options['privallowbbcode'];
            $show['img_bbcode'] = $vbulletin->options['privallowbbimagecode'];
            break;
        case 'usernote':
            $can_toolbar = $vbulletin->options['unallowvbcode'];
            $show['img_bbcode'] = $vbulletin->options['unallowimg'];
            break;
        case 'calendar':
            global $calendarinfo;
            $can_toolbar = $calendarinfo['allowbbcode'];
            $show['img_bbcode'] = $calendarinfo['allowimgcode'];
            $ajax_extra = "calendarid={$calendarinfo['calendarid']}";
            break;
        case 'announcement':
            $can_toolbar = true;
            $show['img_bbcode'] = true;
            break;
        case 'signature':
            // see above -- these are handled earlier
            break;
        case 'visitormessage':
        case 'groupmessage':
        case 'picturecomment':
            switch ($forumid) {
                case 'groupmessage':
                    $allowedoption = $vbulletin->options['sg_allowed_bbcode'];
                    break;
                case 'picturecomment':
                    $allowedoption = $vbulletin->options['pc_allowed_bbcode'];
                    break;
                default:
                    $allowedoption = $vbulletin->options['vm_allowed_bbcode'];
                    break;
            }
            $show['font_bbcode'] = ($show['font_bbcode'] and $allowedoption & ALLOW_BBCODE_FONT) ? true : false;
            $show['size_bbcode'] = ($show['size_bbcode'] and $allowedoption & ALLOW_BBCODE_SIZE) ? true : false;
            $show['color_bbcode'] = ($show['color_bbcode'] and $allowedoption & ALLOW_BBCODE_COLOR) ? true : false;
            $show['basic_bbcode'] = ($show['basic_bbcode'] and $allowedoption & ALLOW_BBCODE_BASIC) ? true : false;
            $show['align_bbcode'] = ($show['align_bbcode'] and $allowedoption & ALLOW_BBCODE_ALIGN) ? true : false;
            $show['list_bbcode'] = ($show['list_bbcode'] and $allowedoption & ALLOW_BBCODE_LIST) ? true : false;
            $show['code_bbcode'] = ($show['code_bbcode'] and $allowedoption & ALLOW_BBCODE_CODE) ? true : false;
            $show['html_bbcode'] = ($show['html_bbcode'] and $allowedoption & ALLOW_BBCODE_HTML) ? true : false;
            $show['php_bbcode'] = ($show['php_bbcode'] and $allowedoption & ALLOW_BBCODE_PHP) ? true : false;
            $show['url_bbcode'] = ($show['url_bbcode'] and $allowedoption & ALLOW_BBCODE_URL) ? true : false;
            $show['quote_bbcode'] = ($show['quote_bbcode'] and $allowedoption & ALLOW_BBCODE_QUOTE) ? true : false;
            $show['img_bbcode'] = $allowedoption & ALLOW_BBCODE_IMG ? true : false;
            $can_toolbar = ($show['font_bbcode'] or $show['size_bbcode'] or $show['color_bbcode'] or $show['basic_bbcode'] or $show['align_bbcode'] or $show['list_bbcode'] or $show['code_bbcode'] or $show['html_bbcode'] or $show['php_bbcode'] or $show['url_bbcode'] or $show['quote_bbcode'] or $show['img_bbcode']);
            $allow_custom_bbcode = $allowedoption & ALLOW_BBCODE_CUSTOM ? true : false;
            break;
        case 'nonforum':
            $can_toolbar = $vbulletin->options['allowbbcode'];
            $show['img_bbcode'] = $vbulletin->options['allowbbimagecode'];
            break;
        default:
            if (intval($forumid)) {
                $forum = fetch_foruminfo($forumid);
                $can_toolbar = $forum['allowbbcode'];
                $show['img_bbcode'] = $forum['allowimages'];
            } else {
                $can_toolbar = false;
                $show['img_bbcode'] = false;
            }
            ($hook = vBulletinHook::fetch_hook('editor_toolbar_switch')) ? eval($hook) : false;
            break;
    }
    // set the editor mode
    if (isset($_REQUEST['wysiwyg'])) {
        // 2 = wysiwyg; 1 = standard
        if ($_REQUEST['wysiwyg']) {
            $vbulletin->userinfo['showvbcode'] = 2;
        } else {
            if ($vbulletin->userinfo['showvbcode'] == 0) {
                $vbulletin->userinfo['showvbcode'] = 0;
            } else {
                $vbulletin->userinfo['showvbcode'] = 1;
            }
        }
    }
    $toolbartype = $can_toolbar ? is_wysiwyg_compatible(-1, $editor_type) : 0;
    $show['wysiwyg_compatible'] = is_wysiwyg_compatible(2, $editor_type) == 2;
    $show['editor_toolbar'] = $toolbartype > 0;
    switch ($editor_type) {
        case 'qr':
            if ($force_editorid == '') {
                $editorid = 'vB_Editor_QR';
            } else {
                $editorid = $force_editorid;
            }
            $editor_height = 100;
            $editor_template_name = 'showthread_quickreply';
            break;
        case 'qr_small':
            if ($force_editorid == '') {
                $editorid = 'vB_Editor_QR';
            } else {
                $editorid = $force_editorid;
            }
            $editor_height = 60;
            $editor_template_name = 'showthread_quickreply';
            break;
        case 'qe':
            if ($force_editorid == '') {
                $editorid = 'vB_Editor_QE';
            } else {
                $editorid = $force_editorid;
            }
            $editor_height = 200;
            $editor_template_name = 'postbit_quickedit';
            break;
        default:
            if ($force_editorid == '') {
                $editorid = 'vB_Editor_' . str_pad(++$editorcount, 3, 0, STR_PAD_LEFT);
            } else {
                $editorid = $force_editorid;
            }
            // set the height of the editor based on the editor_height cookie if it exists
            $editor_height = $vbulletin->input->clean_gpc('c', 'editor_height', TYPE_UINT);
            $editor_height = $editor_height > 100 ? $editor_height : 250;
            $editor_template_name = $toolbartype ? 'editor_toolbar_on' : 'editor_toolbar_off';
            break;
    }
    // init the variables used by the templates built by this function
    $vBeditJs = array('font_options_array' => '', 'size_options_array' => '', 'istyle_array' => '', 'normalmode' => 'false');
    $vBeditTemplate = array('extrabuttons' => '', 'clientscript' => '', 'fontfeedback' => '', 'sizefeedback' => '', 'smiliepopup' => '');
    ($hook = vBulletinHook::fetch_hook('editor_toolbar_start')) ? eval($hook) : false;
    // show a post editing toolbar of some sort
    if ($show['editor_toolbar']) {
        if ($can_attach) {
            $show['attach'] = true;
        }
        $vBeditJs = construct_editor_js_arrays();
        // get extra buttons... experimental at the moment
        $vBeditTemplate['extrabuttons'] = construct_editor_extra_buttons($editorid, $allow_custom_bbcode);
        if ($toolbartype == 2) {
            // got to parse the message to be displayed from bbcode into HTML
            if ($text !== '') {
                require_once DIR . '/includes/functions_wysiwyg.php';
                $newpost['message'] = parse_wysiwyg_html($text, $ishtml, $forumid, iif($allowsmilie and $parsesmilie, 1, 0));
            } else {
                $newpost['message'] = '';
            }
            $newpost['message'] = htmlspecialchars($newpost['message']);
        } else {
            $newpost['message'] = $text;
            // set mode based on cookie set by javascript
            /*$vbulletin->input->clean_gpc('c', COOKIE_PREFIX . 'vbcodemode', TYPE_INT);
            		$modechecked[$vbulletin->GPC[COOKIE_PREFIX . 'vbcodemode']] = 'checked="checked"';*/
        }
    } else {
        // do not show a post editing toolbar
        $newpost['message'] = $text;
    }
    // disable smilies option and clickable smilie
    $show['smiliebox'] = false;
    $smiliebox = '';
    $disablesmiliesoption = '';
    if ($editor_type == 'qr' or $editor_type == 'qr_small') {
        // no smilies
    } else {
        if ($allowsmilie and $show['editor_toolbar']) {
            // deal with disable smilies option
            if (!isset($checked['disablesmilies'])) {
                $vbulletin->input->clean_gpc('r', 'disablesmilies', TYPE_BOOL);
                $checked['disablesmilies'] = iif($vbulletin->GPC['disablesmilies'], 'checked="checked"');
            }
            eval('$disablesmiliesoption = "' . fetch_template('newpost_disablesmiliesoption') . '";');
            if ($toolbartype and ($vbulletin->options['smtotal'] > 0 or $vbulletin->options['wysiwyg_smtotal'] > 0)) {
                // query smilies
                $smilies = $vbulletin->db->query_read_slave("\n\t\t\t\tSELECT smilieid, smilietext, smiliepath, smilie.title,\n\t\t\t\t\timagecategory.title AS category\n\t\t\t\tFROM " . TABLE_PREFIX . "smilie AS smilie\n\t\t\t\tLEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)\n\t\t\t\tORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder\n\t\t\t");
                // get total number of smilies
                $totalsmilies = $vbulletin->db->num_rows($smilies);
                if ($totalsmilies > 0) {
                    if ($vbulletin->options['wysiwyg_smtotal'] > 0) {
                        $show['wysiwygsmilies'] = true;
                        // smilie dropdown menu
                        $vBeditJs['smilie_options_array'] = array();
                        $i = 0;
                        while ($smilie = $vbulletin->db->fetch_array($smilies)) {
                            if (empty($prevcategory)) {
                                $prevcategory = $smilie['category'];
                            }
                            if ($i++ < $vbulletin->options['wysiwyg_smtotal']) {
                                $vBeditJs['smilie_options_array']["{$smilie['category']}"][] = "\t\t'{$smilie['smilieid']}' : new Array('" . addslashes_js($smilie['smiliepath']) . "', '" . addslashes_js($smilie['smilietext']) . "', '" . addslashes_js($smilie['title']) . "')";
                            } else {
                                $vBeditJs['smilie_options_array']["{$prevcategory}"][] = "\t\t'more' : '" . addslashes_js($vbphrase['show_all_smilies']) . "'\n";
                                break;
                            }
                            $prevcategory = $smilie['category'];
                        }
                        foreach (array_keys($vBeditJs['smilie_options_array']) as $category) {
                            $vBeditJs['smilie_options_array']["{$category}"] = "\t'" . addslashes_js($category) . "' : {\n" . implode(",\n", $vBeditJs['smilie_options_array']["{$category}"]) . "}";
                        }
                        $vBeditJs['smilie_options_array'] = "\n" . implode(",\n", $vBeditJs['smilie_options_array']);
                    } else {
                        $show['wysiwygsmilies'] = false;
                    }
                    // clickable smilie box
                    if ($vbulletin->options['smtotal']) {
                        $vbulletin->db->data_seek($smilies, 0);
                        $i = 0;
                        $bits = array();
                        while ($smilie = $vbulletin->db->fetch_array($smilies) and $i++ < $vbulletin->options['smtotal']) {
                            $smiliehtml = "<img src=\"{$smilie['smiliepath']}\" id=\"{$editorid}_smilie_{$smilie['smilieid']}\" alt=\"" . htmlspecialchars_uni($smilie['smilietext']) . "\" title=\"" . htmlspecialchars_uni($smilie['title']) . "\" border=\"0\" class=\"inlineimg\" />";
                            eval('$bits[] = "' . fetch_template('editor_smilie') . '";');
                            if (sizeof($bits) == $vbulletin->options['smcolumns']) {
                                $smiliecells = implode('', $bits);
                                eval('$smiliebits .= "' . fetch_template('editor_smiliebox_row') . '";');
                                $bits = array();
                            }
                        }
                        // fill in empty cells if required
                        $remaining = sizeof($bits);
                        if ($remaining > 0) {
                            $remainingcolumns = $vbulletin->options['smcolumns'] - $remaining;
                            eval('$bits[] = "' . fetch_template('editor_smiliebox_straggler') . '";');
                            $smiliecells = implode('', $bits);
                            eval('$smiliebits .= "' . fetch_template('editor_smiliebox_row') . '";');
                        }
                        $show['moresmilieslink'] = iif($totalsmilies > $vbulletin->options['smtotal'], true, false);
                        $show['smiliebox'] = true;
                    }
                    $vbulletin->db->free_result($smilies);
                }
            }
            eval('$smiliebox = "' . fetch_template('editor_smiliebox') . '";');
        }
    }
    ($hook = vBulletinHook::fetch_hook('editor_toolbar_end')) ? eval($hook) : false;
    // check that $editor_css has been built
    if (!isset($GLOBALS['editor_css'])) {
        eval('$GLOBALS[\'editor_css\'] = "' . fetch_template('editor_css') . '";');
        $GLOBALS['headinclude'] .= "<!-- Editor CSS automatically added by " . substr(strrchr(__FILE__, DIRECTORY_SEPARATOR), 1) . " at line " . __LINE__ . " -->\n" . $GLOBALS['editor_css'];
    }
    eval('$vBeditTemplate[\'clientscript\'] = "' . fetch_template('editor_clientscript') . '";');
    $ajax_extra = addslashes_js($ajax_extra);
    $editortype = $toolbartype == 2 ? 1 : 0;
    $show['is_wysiwyg_editor'] = intval($editortype);
    eval('$messagearea = "' . fetch_template($editor_template_name) . '";');
    return $editorid;
}