Auto Flash Logo
Auto_Flash_Logo-0.1.zip http://custom.simplemachines.org/mods/index.php?action=parse
English
Auto Flash Logo will let you use flash logos in your forum. You will be able to enter flash files as logo URL in Admin -> Current Theme. It won't add any user interface to your panel, it just automatically handles things. Just enter your URL either flash or image, and it displays according to it.
If you're using a custom theme, you need to edit your index.template.php file. Just see the manual installation instructions and see how it is as easy as adding only two lines of code to your file.
portugueis traduzido pelo google
Auto Logo Flash permitem que você use logos flash em seu fórum. Você será capaz de entrar em arquivos flash como URL logotipo em Admin -> Tema Atual. Não vai adicionar qualquer interface de usuário para o painel, ele apenas lida com as coisas automaticamente. Basta digitar o seu URL ou flash ou imagem, e exibe acordo com ela.
Se você estiver usando um tema personalizado, você precisa editar o arquivo index.template.php. Basta ver as instruções de instalação manual e ver como é tão fácil quanto adicionar apenas duas linhas de código ao seu arquivo.
smf 2.0
File Edits (Edita arquivos)
./Sources/Themes.phpFind (encontrar)
// If we're actually inserting something.. if (!empty($inserts)) {
Add After(adicionar Após)
// SMV: SWF Logo start. if (isset($_POST['options']['header_logo_url'])) updateLogoType($_POST['options']['header_logo_url']); // SMV: SWF Logo end.
Find (at the end of the file): (Encontrar (no final do arquivo):)
?>
Add Before (adicionar Antes)
function updateLogoType($logo_url = ''){ global $settings; if (empty($logo_url) && (!isset($settings['header_logo_url']) || empty($settings['header_logo_url']))) return updateSettings(array('logo_type' => 'none')); elseif (empty($logo_url) && !empty($settings['header_logo_url'])) $logo_url = $settings['header_logo_url']; $logo_info = @getimagesize(str_replace(' ', '%20', $logo_url)); updateSettings(array( 'logo_type' => $logo_info ? (($logo_info[2] == IMAGETYPE_SWC || $logo_info[2] == IMAGETYPE_SWF) ? 'flash' : 'image') : 'none', 'logo_size' => $logo_info ? ' ' . $logo_info[3] : 0 ) );}
./Themes/default/index.template.phpFind (encontrar)
echo $context['forum_name_html_safe'];
Add After(adicionar Após)
elseif ($modSettings['logo_type'] == 'flash') echo ' <object type="application/x-shockwave-flash" data="', $settings['header_logo_url'], '"', $modSettings['logo_size'], '> <param name="movie" value="', $settings['header_logo_url'], '" /> </object>';
Code
install_0.1.php
This file should be able to execute standalone.
código
install_0.1.php
Este arquivo deve ser capaz de executar standalone.
usei o google para traduzir queria saber se fiser isso nos arquivos da para colocar flash swf como logo