Wertos
Пользователь
Вот такую фигню сделал... говорят ссылки ТИЦ повышают...
bbcode.php
и
и в самый низ
bbcode.tpl
main.css
Рад буду увидеть новые реализации
------------------------------------------------------
Обращаем внимание... то что пишу это для свн ! но не для тп 2 ! так что собственно пишу я идеи
bbcode.php
PHP:
// [cast] aaa,bbb,ccc,ddd [/cast] for indication actors.
$text = preg_replace("#\[cast:$uid\](.*?)\[/cast:$uid\]#sie", "parse_actor('\\1')", $text);
PHP:
// [cast] aaa,bbb,ccc,ddd [/cast] for indication actors.
$text = preg_replace("#\[cast\](.*?)\[/cast\]#si", "[cast:$uid]\\1[/cast:$uid]", $text);
PHP:
function parse_actor($text)
{
global $db, $board_config, $theme, $lang, $phpEx;
$script_name = preg_replace('/^\/?(.*?)\/?$/', '\1', trim($board_config['script_path']));
$server_name = trim($board_config['server_name']);
$server_protocol = ( $board_config['cookie_secure'] ) ? 'https://' : 'http://';
$server_port = ( $board_config['server_port'] <> 80 ) ? ':' . trim($board_config['server_port']) . '/' : '/';
$index_url = $server_protocol . $server_name . $server_port . (( $script_name != '' )? $script_name . '/':'');
$text_cs = array();
$text_cast = $text_c = array();
$text_c = explode(", ",$text);
foreach ($text_c as $value) {
$text_cs[] = '<a href="' . append_sid($index_url . "search.$phpEx?nm=$value") . '" target="_blank" class="postLink in-search">' . $value . '</a>';
}
return(implode(", ", $text_cs));
}
HTML:
<!-- BEGIN cast --><span class="" >{CAST}</span><!-- END cast -->
Код:
a.in-search, a.in-search:visited { text-decoration: none; background: url(../images/icon_external.png) center left no-repeat; padding-left: 14px; font-weight: 100;}
------------------------------------------------------
Обращаем внимание... то что пишу это для свн ! но не для тп 2 ! так что собственно пишу я идеи