Recordad que para pedir soporte alguno, debéis facilitar los datos de soporte oportunos por favor, mirad aquí y leer las Normas generales del foro, esto nos servirá de ayuda para dar el mejor soporte..

Gracias.

La Administración de phpBB España.

Modificar mod de youtube

Aquí­ podrás dejar tus dudas sobre MODs o MODificaciones de tu phpBB2
  Reglas del Foro
Antes de participar en los foros, leer esto por favor.
Normas generales de phpBB-Es y las de Soporte
Cerrado
JoNAS
Observador/a
Mensajes: 1
Registrado: 29 Ene 2009, 06:13

Modificar mod de youtube

#1

Mensaje por JoNAS »

URL: http://valentinez.net23.net" onclick="window.open(this.href);return false;
Versión phpBB: phpBB2 (2.0.23)
MODs Instalados: multi-bbc-1.6.0.mod
youtube-1.0.1.mo.mod
Plantilla(s) usada(s): subsilver
Servidor: Host Linux gratuito
Actualización desde otra versión: No
Conversión desde otro sistema de foros: No

He instalado los mod "multi-bbc-1.6.0.mod" y "youtube-1.0.1.mo.mod" y funcionan correctamente, pero quisiera que me ayudaran para modificar el mod de youtube, para cambiar su funcionalidad

funciona asi :

Código: Seleccionar todo

[youtube]http://www.youtube.com/watch?v=2_HXUhShhmY[/youtube]
pero quisiera que funcionara asi:

Código: Seleccionar todo

[youtube]2_HXUhShhmY[/youtube]
el objetivo es que me serviria como ejemplo , para configurar otros embed de otras pagina web.


aqui esta mod de youtube-1.0.1.mo.mod :
Spoiler
##############################################################
## MOD Title: YouTube Video BBCode
## MOD Author: michaeltripp < iamdrscience@hotmail.com > (Mike) http://itsbeenconfirmed.com" onclick="window.open(this.href);return false;
## MOD Description: Adds a new bbcode allowing you to easily embed videos from YouTube.com.
## MOD Version: 1.0.1
##
## Installation Level: (Easy)
## Installation Time: ~5 Minutes
## Files To Edit: - includes/bbcode.php,
## - langugage/lang_english/lang_main.php,
## - templates/subSilver/bbcode.tpl,
## - templates/subSilver/posting_body.tpl
## Included Files: n/a
## License: http://opensource.org/licenses/gpl-license.php" onclick="window.open(this.href);return false; GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/" onclick="window.open(this.href);return false;
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/" onclick="window.open(this.href);return false;
##############################################################
## Author Notes:
## You must have Multiple BBCode MOD installed for this to work.
## Get it here: http://www.phpbb.com/phpBB/viewtopic.php?t=74705" onclick="window.open(this.href);return false;
##
## example:
##
##
## YouTube URL is the "Video URL (Permalink)" or the URL of the page the video
## is on, NOT the "Embeddable Player" code they have on their video pages.
##
##############################################################
## MOD History:
##
## 2006-03-20 - Version 1.0.1
## -Changed the names of the variables tbat are replaced in bbcode.tpl
## from VIDEO and LINK to YOUTUBEID and YOUTUBELINK, because the names
## were too common making it likely that they would conflict with other mods.
##
## 2006-03-17 - Version 1.0.0
##
## 2006-03-16 - Version 0.9.3
## -Fixed a problem in the regex that allowed some invalid but benign input
##
## 2006-03-15 - Version 0.9.2
## -Made the word "link" was a language variable
## -Made the link open in a new window
## -YouTube video IDs can have dashes, so I changed the regex to account for this
## -Moved the link underneath the video instead of beside it
##
## 2006-03-07 - Version 0.9.1
## -Added link for browsers YouTube's player doesn't like, i.e. Opera :(
##
## 2006-03-06 - Version 0.9.0
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################

#
#-----[ OPEN ]---------------------------------
#
includes/bbcode.php

#
#-----[ FIND ]---------------------------------
#
$EMBB_widths = array(''

#
#-----[ IN-LINE FIND ]---------------------------------
#
array(''

#
#-----[ IN-LINE AFTER, ADD ]---------------------------------
#
,'60'

#
#-----[ FIND ]---------------------------------
#
$EMBB_values = array(''

#
#-----[ IN-LINE FIND ]---------------------------------
#
$EMBB_values = array(''

#
#-----[ IN-LINE AFTER, ADD ]---------------------------------
#
,'YouTube'

#
#-----[ FIND ]------------------------------------------
#
$bbcode_tpl['email'] = str_replace('{EMAIL}', '\\1', $bbcode_tpl['email']);
#
#-----[ AFTER, ADD ]------------------------------------------
#

$bbcode_tpl['youtube'] = str_replace('{YOUTUBEID}', '\\1', $bbcode_tpl['youtube']);
$bbcode_tpl['youtube'] = str_replace('{YOUTUBELINK}', $lang['youtube_link'], $bbcode_tpl['youtube']);

#
#-----[ FIND ]------------------------------------------
#
$replacements[] = $bbcode_tpl['email'];
#
#-----[ AFTER, ADD ]------------------------------------------
#

// code..
$patterns[] = "#\[youtube\]http://(?:www\.)?youtube.com/watch\?v=([0-9A-Za-z-_]{11})[^[]*\[/youtube\]#is";
$replacements[] = $bbcode_tpl['youtube'];
#
#-----[ OPEN ]---------------------------------
#
language/lang_english/lang_main.php

#
#-----[ FIND ]---------------------------------
#
# NOTE: the full line to look for is:
#$lang['bbcode_f_help'] = "Font size: [size=x-small]small text[/size]";
#
$lang['bbcode_f_help'] =

#
#-----[ AFTER, ADD ]---------------------------------
#

$lang['bbcode_help']['youtube'] = 'YouTube: ';

$lang['youtube_link'] = 'Link';
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/bbcode.tpl

#
#-----[ FIND ]------------------------------------------
#
<!-- BEGIN email --><a href="mailto:{EMAIL}">{EMAIL}</a><!-- END email -->
#
#-----[ AFTER, ADD ]------------------------------------------
#

<!-- BEGIN youtube -->
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/{YOUTUBEID}"></param>
<embed src="http://www.youtube.com/v/{YOUTUBEID}" type="application/x-shockwave-flash" width="425" height="350"></embed>
</object><br />
<a href="http://youtube.com/watch?v={YOUTUBEID}" target="_blank">{YOUTUBELINK}</a><br />
<!-- END youtube -->
#
#-----[ OPEN ]---------------------------------
#
templates/subSilver/posting_body.tpl

#
#-----[ FIND ]---------------------------------
#
# NOTE: the actual line to find is MUCH longer, containing all the bbcode tags
#
bbtags = new Array(

#
#-----[ IN-LINE FIND ]---------------------------------
#
'',''

#
#-----[ IN-LINE AFTER, ADD ]---------------------------------
#
,''

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM

Cerrado

Volver a “Soporte, preguntas sobre MODs de phpBB 2”