Area51 @ 4seven.de

Mod Base and Testarea
It is currently 23 Feb 2025, 19:17

All times are UTC + 1 hour




Post new topic TOPIC_LOCKED  [ 2 posts ] 
Author Message
PostPosted: 28 Feb 2012, 20:03 
Offline
Tiptop
Tiptop
User avatar

Joined: 11 Feb 2008, 11:49
Posts: 241
4S Preview before Submit
(Force Preview before Submit)

Snippet-Title: 4S Preview before Submit
Snippet-Version: 0.0.1
Snippet-Author: 4seven

Request by: takufner
Request by: Susa

Snippet-Description: This Mod prevents the Posting without Preview

phpBB-Version: phpBB 3.0.x
phpBB-Languages: mutlilingual (because of only 1 edit in language/xx/common.php)
phpBB-Styles: all Styles, that are based on prosilver and subsilver2


Features:
- No posting without preview
- No going around by an empty postfield possible

Planned:
- ACP Entry to switch Mod to Off
- Maybe a Module to prevent 'posting without preview' for chosen groups

Image follows

Image follows

Instruction:

open

posting.php

find

Code:
// Start assigning vars for main posting page ...
$template->assign_vars(array(


before add

Code:
// 4S Preview before Submit / 4seven / 2009 
if(($mode == 'post' ||  $mode == 'reply') && (!$preview && (empty($preview_message)))){
$error[] = $user->lang['USER_MUST_PREVIEW'];
$template->assign_vars(array(
'S_SUBMIT_BUTTON' => false));}
else if (($mode == 'post' ||  $mode == 'reply') && ($preview && (empty($preview_message)))){
$error[] = $user->lang['USER_MUST_PREVIEW'];
$template->assign_vars(array(
'S_SUBMIT_BUTTON' => false));}
else if (($mode == 'post' ||  $mode == 'reply') && ($preview && (!empty($preview_message)))){
$template->assign_vars(array(
'S_SUBMIT_BUTTON' => true));}
// 4S Preview before Submit / 4seven / 2009                 


open

language/xx/common.php

find

Code:
$lang = array_merge($lang, array(


after add

Code:
    'USER_MUST_PREVIEW'    => 'You must click on Preview, before you can Submit',


open

styles/prosilver/template/posting_editor.html

find

Code:
            <input type="submit" accesskey="s" tabindex="6" name="post" value="{L_SUBMIT}" class="button1" />&nbsp;


replace with

Code:
            <!-- IF S_SUBMIT_BUTTON -->
            <input type="submit" accesskey="s" tabindex="6" name="post" value="{L_SUBMIT}" class="button1" />&nbsp;
            <!-- ENDIF -->


open

styles/subsilver2/template/posting_body.html

find (2 x)

Code:
            &nbsp; <input class="btnmain" type="submit" accesskey="s" tabindex="11" name="post" value="{L_SUBMIT}" />


replace (2 x) with

Code:
            <!-- IF S_SUBMIT_BUTTON -->
            &nbsp; <input class="btnmain" type="submit" accesskey="s" tabindex="11" name="post" value="{L_SUBMIT}" />
            <!-- ENDIF -->


Clear all Board- and Browser-Caches

Enjoy

_________________
Mod-Bot / Service-Team


Top
 Profile  
 
PostPosted: 31 Aug 2012, 00:43 
Offline
Tiptop
Tiptop
User avatar

Joined: 11 Feb 2008, 11:49
Posts: 241
Also take a look to additions and fixes

https://www.phpbb.com/community/viewtop ... #p13120678
https://www.phpbb.com/community/viewtop ... #p13120700
https://www.phpbb.com/community/viewtop ... #p13120825

_________________
Mod-Bot / Service-Team


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic TOPIC_LOCKED  [ 2 posts ] 

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group
[ Time : 0.011s | 23 Queries | GZIP : Off ]