[joomext.ru] Плагин Tabs & Slider & Spoilers

  • Автор темы I AM
  • 574
  • Обновлено
  • 11, Apr 2018
  • #1
Плагин Tabs & Slider & Spoilers joomext.ru Универсальный плагин контента, который объединяет в себе 3 функции - табы, спойлер и слайды (вид гармошки)
  • Теперь не нужно использовать по 3 плагина для разных эффектов - всё в одном!
  • Очень мало весит
  • Специальные теги для вставки


Табы, Спойлер и Аккордеон для Joomla Joomla 2.5 - 3.x В материале вставляем:

Tabs

{tab=first tab title here} some text here {tab=second tab title here} some more text here {tab=third tab title here} some more text here and so on.. {/tabs}

Sliders

{slider=My first slider in Joomla!} some slider text here {slider=Joomla! is the best} some slider more text here {slider=Third one} some slider more text here and so on... {/sliders}

Spoilers

{spoiler=My first spoiler in Joomla!} some spoiler text here {spoiler= spoiler in Joomla!} some spoiler text here {/spoilers} http://joomext.ru/plugin-tabs-slider-spoilers

Скрытая информация :: Авторизуйтесь для просмотра »

I AM


Рег
23 Jul, 2011

Тем
49554

Постов
57426

Баллов
552966
  • 31, May 2024
  • #2
Это мои текущие результаты с тем же кодом
 <?PHP

// simple-captcha.php

class FGSimpleCaptcha extends FG_CaptchaHandler

{

var $error_str;

var $captcha_varname;

var $uniquekey;

function FGSimpleCaptcha($captcha_var_name)

{

$this->captcha_varname='$captcha_var_name'; // ?

$this->uniquekey='abc12fghijkl34mno';

}

/*Add more simple questions here.*/

function GetSimpleCaptcha()

{

$arrQuestions = array(

"Which of sock, library, cake or red is a color? "=>"red",

"Enter the number thirteen thousand three hundred and sixty eight in digits: "=>"13,368");

$question = array_rand($arrQuestions);

$answer = $arrQuestions[$question];

$_SESSION['FGCF_Captcha_Answer'] = $this->Md5CaptchaAnswer($answer);

return $question;

}

function SetFormKey($key)

{ $this->uniquekey = $key; }

function GetKey()

{ return $this->uniquekey; }

function Validate()

{

$ret=false;

if(empty($_POST[$this->captcha_varname]))

{

$this->error_str = "Please answer the anti-spam question";

$ret = false;

}

else

{

$scaptcha = trim($_POST[$this->captcha_varname]);

$scaptcha = strtolower($scaptcha);

$user_answer = $this->Md5CaptchaAnswer($scaptcha);

if($user_answer != $_SESSION['FGCF_Captcha_Answer'])

{

$this->error_str = "Failed the anti-spam check!";

$ret = false;

}

else

{ $ret = true; }

}

//else

return $ret;

}

function Md5CaptchaAnswer($answer)

{ return md5($this->GetKey().$answer); }

function GetError()

{ return $this->error_str; }

}

?>
PHP:
 

sxqzqws


Рег
21 Oct, 2012

Тем
0

Постов
3

Баллов
3
Тем
49554
Комментарии
57426
Опыт
552966

Интересно