[CDB] Recent Topics

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Scam Warning
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

[CDB] Recent Topics

Post by PayBas »

Recent Topics

Screenshot:
screenshot.png
Reworked and updated extension for phpBB to display recent topics.
Based on NV Recent Topics for phpBB 3.0, by Joas Schilling (nickvergessen)

More info & download: https://github.com/PayBas/RecentTopics
You do not have the required permissions to view the files attached to this post.
Last edited by PayBas on Fri Jun 27, 2014 1:48 pm, edited 2 times in total.
User avatar
Raul [ThE KuKa]
Style Customisations
Style Customisations
Posts: 11137
Joined: Mon Dec 08, 2003 9:24 pm
Location: Spain
Name: Raul Arroyo

Re: [DEV] Recent Topics

Post by Raul [ThE KuKa] »

Hi PayBas,

Spanish translation:

Code: Select all

<?php

/**
*
* @package Recent Topics Extension
* @copyright (c) 2014 PayBas
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
* Based on the original NV Recent Topics by Joas Schilling (nickvergessen)
*
*/

if (!defined('IN_PHPBB'))
{
	exit;
}
if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

$lang = array_merge($lang, array(
	'RECENT_TOPICS'						=> 'Temas recientes',
	'RECENT_TOPICS_EXT'					=> 'Temas recientes',
	'RECENT_TOPICS_LIST'				=> 'Ver en “temas recientes”',
	'RECENT_TOPICS_LIST_EXPLAIN'		=> 'Serán los temas de este foro los que se mostrarán en el índice de “temas recientes”?',

	'RT_CONFIG'							=> 'Configuracón',
	'RT_ANTI_TOPICS'					=> 'Temas excluidos',
	'RT_ANTI_TOPICS_EXP'				=> 'Separados por “, ” (Por ejemplo: “7, 9”)<br />Si quiere excluir un tema, simplemente introduzca 0.',
	'RT_NUMBER'							=> 'Temas recientes',
	'RT_NUMBER_EXP'						=> 'Número de temas mostrados en el índice.',
	'RT_PAGE_NUMBER'					=> 'Páginas de temas recientes',
	'RT_PAGE_NUMBER_EXP'				=> 'Puede mostrar más temas recientes usando una pequeña paginación. Solo tiene que introducir 1 para desactivar esta función. Si introduce 0, habrá tantas páginas como sean necesarias para mostrar todos los temas.',
	'RT_PARENTS'						=> 'Mostrar foros padre',
	'RT_SAVED'							=> 'Ajustes guardados.',

	'RT_VIEW_ON'		=> 'ver temas recientes en',
	'RT_MEMBERLIST'		=> 'Lista de Usuarios',
	'RT_INDEX'			=> 'Índice',
	'RT_SEARCH'			=> 'Buscar',
	'RT_FAQ'			=> 'FAQ',
	'RT_MCP'			=> 'MCP (Panel de Control del Moderador)',
	'RT_UCP'			=> 'UCP (Panel de Control del Usuario)',
	'RT_VIEWFORUM'		=> 'Viendo un foro',
	'RT_VIEWTOPIC'		=> 'Viendo un tema',
	'RT_VIEWONLINE'		=> 'Viendo conectados',
	'RT_POSTING'		=> 'Escribiendo',
	'RT_REPORT'			=> 'Reportando',
	'RT_OTHERS'			=> 'otro sitio',
));

?>
All unsolicited PMs will be ignored.
:warning: Knowledge Base | Documentation | Board rules | phpBB Styles Rules & Policies | Styles Queue Stats :warning:


If you like my styles, translations, etc. and want to show some appreciation, then feel free to Donate.
:flag_es: phpBB Spain - Online Since 2003 :heart:


User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

Re: [DEV] Recent Topics

Post by PayBas »

Thanks! Included.
User avatar
RAGEstacker
Registered User
Posts: 41
Joined: Sun Mar 23, 2014 11:46 am
Location: Italy

Re: [DEV] Recent Topics

Post by RAGEstacker »

It doesn't work on my phpbb 3.1 b2 forum..its intended to work with this phpbb's version?
I'm from Italy
User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

Re: [DEV] Recent Topics

Post by PayBas »

Can you be more specific?

Do you get error messages? If so, what are they?

It should work with B2.
User avatar
RAGEstacker
Registered User
Posts: 41
Joined: Sun Mar 23, 2014 11:46 am
Location: Italy

Re: [DEV] Recent Topics

Post by RAGEstacker »

PayBas wrote:Can you be more specific?

Do you get error messages? If so, what are they?

It should work with B2.
i get this:
Image

EDIT: Now it work,i switched from my style to prosilver and then i came back to my style and now all is fine
I'm from Italy
User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

Re: [DEV] Recent Topics

Post by PayBas »

What style were you using? Was it a 3.1 style?
User avatar
RAGEstacker
Registered User
Posts: 41
Joined: Sun Mar 23, 2014 11:46 am
Location: Italy

Re: [DEV] Recent Topics

Post by RAGEstacker »

PayBas wrote:What style were you using? Was it a 3.1 style?
yes,was a prosilver 3.1 b2 with some personal things
I'm from Italy
Splendor
Registered User
Posts: 1
Joined: Tue May 06, 2014 4:43 pm

Re: [DEV] Recent Topics

Post by Splendor »

RAGEstacker wrote:It doesn't work on my phpbb 3.1 b2 forum..its intended to work with this phpbb's version?
Works on mine pretty well.
User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

Re: [DEV] Recent Topics

Post by PayBas »

Extension updated with option to display only unread topics. Also modernized the code so it no longer uses deprecated functions etc.
User avatar
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey

Re: [BETA] Recent Topics

Post by noth »

this is looking like one of the most useful 3.1 extensions in development, essential on any index page I would say!
User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

Re: [BETA] Recent Topics

Post by PayBas »

Release updated. Changed topic to [BETA]

https://github.com/PayBas/RecentTopics/releases
User avatar
RAGEstacker
Registered User
Posts: 41
Joined: Sun Mar 23, 2014 11:46 am
Location: Italy

Re: [BETA] Recent Topics

Post by RAGEstacker »

good
I'm from Italy
marian0810
Former Team Member
Posts: 3011
Joined: Mon May 21, 2007 9:17 pm
Location: The Netherlands
Name: Marian

Re: [BETA] Recent Topics

Post by marian0810 »

Is there any way to move it to the bottom of the index page instead of the top? :)
You and me, time and space. You watch us run!
User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

Re: [BETA] Recent Topics

Post by PayBas »

Yes. It's relatively easy. But I would need to make an ACP option, so admin's can decide themselves where they want it.

Either that, or you just need to rename a template file. If other users want this, I will add the option.

Return to “Extensions in Development”