ACP Site Announcement Centre

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in here. No new MODs will be accepted into the MOD Database for phpBB2
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.
Post Reply
Extensions Robot
Extensions Robot
Extensions Robot
Posts: 29220
Joined: Sat Aug 16, 2003 7:36 am

ACP Site Announcement Centre

Post by Extensions Robot »

Modification name: ACP Site Announcement Centre
Author: lefty74
Modification description: Adds a site announcement box to the top of your forums that can be edited easily in the admin panel.
Admin can choose who should see the Site Announcements (All, Registered, Mods, Admin only)
Separate announcements for guests only can be shown
Modification version: 1.2.3
Tested on phpBB version: See below

Download file: ACP_Announcement_Centre_1_2_3.zip
File size: 187754 Bytes

Modification overview page: View


Selected tags:
  1. category
    1. Add-Ons
  2. phpbb
    1. 2.0.22
Support for this modification needs to be asked within this topic. The phpBB Team is not responsible or required to give anyone support for this modification. By installing this MOD, you acknowledge that the phpBB Support Team or phpBB MODifications Team may not be able to provide support.

This MOD has only been tested by the phpBB MOD Team with the phpBB version listed in the topic. It may not work in any other versions of phpBB.
(this is a non-active account manager for the phpBB Extension Customisations Team)
TerraFrost
Former Team Member
Posts: 5957
Joined: Sun Dec 26, 2004 3:40 am
Location: Austin, TX

ACP Site Announcement Centre

Post by TerraFrost »

Modification validated/released

Notes:
User avatar
lefty74
Registered User
Posts: 3649
Joined: Wed Sep 14, 2005 8:26 pm
Location: NL
Contact:

Re: ACP Site Announcement Centre

Post by lefty74 »

yay, thanks very much for the validation :)
lefty74
zoocrew.eu - help us save our wildlife
My MODS | Due to lack of time I unfortunately am unable to work on my mods anymore, anyone who has ideas to improve them and would like to take any of them over, please PM me.
cavallino
Registered User
Posts: 317
Joined: Thu Aug 04, 2005 7:06 am

Re: ACP Site Announcement Centre

Post by cavallino »

Congratulations for the validation Lefty! I have been using this great mod for a long time now and you were always available when I needed help!
User avatar
lefty74
Registered User
Posts: 3649
Joined: Wed Sep 14, 2005 8:26 pm
Location: NL
Contact:

Re: ACP Site Announcement Centre

Post by lefty74 »

thanks very much cavallino. :)
lefty74
zoocrew.eu - help us save our wildlife
My MODS | Due to lack of time I unfortunately am unable to work on my mods anymore, anyone who has ideas to improve them and would like to take any of them over, please PM me.
User avatar
raipe
Registered User
Posts: 96
Joined: Sun May 28, 2006 1:14 pm

Re: ACP Site Announcement Centre

Post by raipe »

Great job lefty74!

Special thanks for making my requested option! 8-)
User avatar
lefty74
Registered User
Posts: 3649
Joined: Wed Sep 14, 2005 8:26 pm
Location: NL
Contact:

Re: ACP Site Announcement Centre

Post by lefty74 »

you are welcome :)
lefty74
zoocrew.eu - help us save our wildlife
My MODS | Due to lack of time I unfortunately am unable to work on my mods anymore, anyone who has ideas to improve them and would like to take any of them over, please PM me.
jbarrouk
Registered User
Posts: 218
Joined: Mon May 15, 2006 3:10 am
Contact:

Re: ACP Site Announcement Centre

Post by jbarrouk »

Hi all,
Could I possibly see a demo board with this mod?

all the best,
Joe
User avatar
lefty74
Registered User
Posts: 3649
Joined: Wed Sep 14, 2005 8:26 pm
Location: NL
Contact:

Re: ACP Site Announcement Centre

Post by lefty74 »

hi, here are screenshots,
Screenshots:
ACP
Image

Index
Image


i am using it on my live forum, just click on my signature if you want to see it.
lefty74
zoocrew.eu - help us save our wildlife
My MODS | Due to lack of time I unfortunately am unable to work on my mods anymore, anyone who has ideas to improve them and would like to take any of them over, please PM me.
jbarrouk
Registered User
Posts: 218
Joined: Mon May 15, 2006 3:10 am
Contact:

Re: ACP Site Announcement Centre

Post by jbarrouk »

Thanky you very much. This looks great.
User avatar
Dann0
Registered User
Posts: 76
Joined: Tue Jul 04, 2006 1:36 pm
Contact:

Re: ACP Site Announcement Centre

Post by Dann0 »

Is is possible to use the mod to write multiple announcements or is it just 1 announcement at a time?

Dan
Image
User avatar
lefty74
Registered User
Posts: 3649
Joined: Wed Sep 14, 2005 8:26 pm
Location: NL
Contact:

Re: ACP Site Announcement Centre

Post by lefty74 »

it is only possible to write a separate guest announcement, multiple message are not possible.
lefty74
zoocrew.eu - help us save our wildlife
My MODS | Due to lack of time I unfortunately am unable to work on my mods anymore, anyone who has ideas to improve them and would like to take any of them over, please PM me.
ang77
Registered User
Posts: 40
Joined: Mon Sep 10, 2007 4:41 pm

Re: ACP Site Announcement Centre

Post by ang77 »

Hi,

Code: Select all

#
#-----[ OPEN ]------------------------------------------
#
includes/functions_post.php
#
#-----[ FIND ]------------------------------------------
#
		$template->set_filenames(array(
         'smiliesbody' => 'posting_smilies.tpl')
      );

   } 
#
#-----[ AFTER, ADD ]------------------------------------------
#
	elseif ($mode == 'window_announcement_text') 
   {

      $userdata = session_pagestart($user_ip, $page_id);
      init_userprefs($userdata);

      $gen_simple_header = TRUE;

      $page_title = $lang['Site_Announcement'];
      include($phpbb_root_path . 'includes/page_header.'.$phpEx);

      $template->set_filenames(array(
         'smiliesbody' => 'posting_smilies_announcement_centre_text.tpl')
      );
   }
   
#
#-----[ FIND ]------------------------------------------
#
   if ($mode == 'window'
#
#-----[ IN-LINE FIND ]------------------------------------------
#
'window'
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
 || $mode == 'window_announcement_text'
I could not find both of the lines that are needed in my function.php.
I tried to search for 'posting_smilies.tpl'; but no result.
also searched for 'window' to no avail.
help, please...

thank you :)


EDIT: AACCKK... sorry... its not function.php, but functions_post.php... i found them.. sorry.. :) :roll:
BlueMeanie
Registered User
Posts: 4
Joined: Mon Dec 18, 2006 10:34 pm
Contact:

Re: ACP Site Announcement Centre

Post by BlueMeanie »

If I have multiple styles for my board, do I need to install this on every style or...? Looking at the screen caps, I know I don't have anything in my admin panel that has a MODs section for modifications...probably since I haven't added any due to fear of messing it all up! :roll:

Anyway, thanks in advance.
User avatar
lefty74
Registered User
Posts: 3649
Joined: Wed Sep 14, 2005 8:26 pm
Location: NL
Contact:

Re: ACP Site Announcement Centre

Post by lefty74 »

BlueMeanie wrote:If I have multiple styles for my board, do I need to install this on every style or...? Looking at the screen caps, I know I don't have anything in my admin panel that has a MODs section for modifications...probably since I haven't added any due to fear of messing it all up! :roll:

Anyway, thanks in advance.
yes, you will need to install this on every style I am afraid if you want it to work on those.

The MOD section that you see on the screenshot is EasyMod, you can install this mod without it though ;)
lefty74
zoocrew.eu - help us save our wildlife
My MODS | Due to lack of time I unfortunately am unable to work on my mods anymore, anyone who has ideas to improve them and would like to take any of them over, please PM me.
Post Reply

Return to “[2.0.x] MOD Database Releases”