LiveInternetMail.ru
Форум русской поддержки Joomla!® CMS
27.05.2012, 07:47:58 *
Добро пожаловать, Гость. Пожалуйста, войдите или зарегистрируйтесь.
Вам не пришло письмо с кодом активации?

Войти
   
   Начало   Поиск Joomla 1.7 FAQ Joomla 1.5 FAQ Joomla 1.0 FAQ Правила форума Новости Joomla Войти Регистрация Помощь  
Страниц: [1]   Вниз
  Добавить закладку  |  Печать  
Автор Тема: Проблемы с шаблоном gk_corporate 2  (Прочитано 982 раз)
0 Пользователей и 2 Гостей смотрят эту тему.
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« : 20.07.2011, 14:39:16 »

Приветствую всех!

Может быть вопрос мой покажется простым, но я уже что только не делала, но победить проблему не могу.

Имеется шаблон:



В самом верхнем ряду, ссылки "login", "register", "tools".
Проблема в том, что мне НИКАК не убрать их. Я выключаю в настройках шаблона функцию авторизации, но ссылки никуда не деваются и продолжают работать.

Что делать?

З.Ы. Уже перегуглила тонну инфы и перелопатила весь этот форум. Но так и не смогла найти ответ.
Записан
Dorfman
Живу я здесь
******

Репутация: +64/-4
Offline Offline

Пол: Мужской
Сообщений: 982


Почти влез...


« Ответ #1 : 20.07.2011, 15:23:28 »

Значит, ссылки жёстко прописаны в файле шаблона index.php.
Записан
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« Ответ #2 : 20.07.2011, 16:45:53 »

Неа. Лазила в index.php нету там. Если открыть страницу через "свойства страницы" в хроме, и посмотреть код, то там есть ссылка на какой то модуль "tools" которого в модулях нет. Если закоменнтить этот модуль вручную тупо, вылезает ошибка и сайт вообще не грузится. Вот такая петрушка. Я уже весь моск сломала...
Записан
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« Ответ #3 : 21.07.2011, 13:41:51 »

Код с index.php

Код:
<?php



/*

#------------------------------------------------------------------------

# Corporate - April 2010 (for Joomla 1.5)

#

# Copyright (C) 2007-2010 Gavick.com. All Rights Reserved.

# License: Copyrighted Commercial Software

# Website: http://www.gavick.com

# Support: support@gavick.com  

#------------------------------------------------------------------------

# Based on T3 Framework

#------------------------------------------------------------------------

# Copyright (C) 2004-2009 J.O.O.M Solutions Co., Ltd. All Rights Reserved.

# @license - GNU/GPL, http://www.gnu.org/copyleft/gpl.html

# Author: J.O.O.M Solutions Co., Ltd

#------------------------------------------------------------------------

*/



// no direct access

defined( '_JEXEC' ) or die( 'Restricted access' );



include_once (dirname(__FILE__).DS.'libs'.DS.'gk.template.helper.php');



$tmpl = GKTemplateHelper::getInstance($this, array('ui', GK_TOOL_SCREEN, GK_TOOL_MENU, 'main_layout', 'direction'));




//Calculate the width of template

$tmplWidth = '';

$tmplWrapMin = '100%';

switch ($tmpl->getParam(GK_TOOL_SCREEN)){

case 'auto':

$tmplWidth = '97%';

break;

case 'fluid':

$tmplWidth = intval($tmpl->getParam('gk_screen-fluid-fix-gk_screen_width'));

$tmplWidth = $tmplWidth ? $tmplWidth.'%' : '90%';

break;

case 'fix':

$tmplWidth = intval($tmpl->getParam('gk_screen-fluid-fix-gk_screen_width'));

$tmplWrapMin = $tmplWidth ? ($tmplWidth+1).'px' : '771px';

$tmplWidth = $tmplWidth ? $tmplWidth.'px' : '770px';

break;

default:

$tmplWidth = intval($tmpl->getParam(GK_TOOL_SCREEN));

$tmplWrapMin = $tmplWidth ? ($tmplWidth+1).'px' : '983px';

$tmplWidth = $tmplWidth ? $tmplWidth.'px' : '982px';

break;

}



$tmpl->setParam ('tmplWidth', $tmplWidth);

$tmpl->setParam ('tmplWrapMin', $tmplWrapMin);



//Main navigation

$gk_menutype = $tmpl->getMenuType();

$gkmenu = null;

if ($gk_menutype && $gk_menutype != 'none') {

$gkparams = new JParameter('');

$gkparams->set( 'menutype', $tmpl->getParam('menutype', 'mainmenu') );

$gkparams->set( 'menu_images_align', 'left' );

$gkparams->set( 'menupath', $tmpl->templateurl().'/gk_menus');

$gkparams->set('menu_images', 1); //0: not show image, 1: show image which set in menu item

$gkparams->set('menu_background', 1); //0: image, 1: background

$gkparams->set('mega-colwidth', 200); //Megamenu only: Default column width

$gkparams->set('mega-style', 1); //Megamenu only: Menu style.

$gkparams->set('rtl',($tmpl->getParam('direction')=='rtl' || $tmpl->direction == 'rtl'));

$gkmenu = $tmpl->loadMenu($gkparams, $gk_menutype);

}

//End for main navigation



$layout = $tmpl->getLayout ();



if ($layout) {

$tmpl->display($layout);

}

Насколько я понимаю тут есть ссылки на какие то модули TOOL. Но куда они ссылаются и как их отрубить я не понимаю.
Записан
Lex
Тестеры
*****

Репутация: +254/-1
Offline Offline

Пол: Мужской
Сообщений: 1842


« Ответ #4 : 21.07.2011, 13:45:45 »

В менеджере модулей найди модуль в позиции tools и отключи.
Записан
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« Ответ #5 : 21.07.2011, 14:09:57 »

В тот то и дело. Нет там этой позиции.

Все что там есть:



« Последнее редактирование: 21.07.2011, 14:13:24 от G_EVA » Записан
Dorfman
Живу я здесь
******

Репутация: +64/-4
Offline Offline

Пол: Мужской
Сообщений: 982


Почти влез...


« Ответ #6 : 22.07.2011, 02:18:15 »

ага, понятно. Там куча файлов дополнительно вставляется. Значит, самый простой вариант - открываем Тотал Коммандер и в строке поиска по текстовой строке вбиваем "нужную" ссылку. Скорее всего она будет в файле helper.php
Записан
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« Ответ #7 : 22.07.2011, 12:04:20 »

Нашла gk.template.helper.php, только что с ним теперь делать?

Код:
<?php

/*

#------------------------------------------------------------------------

# memovie - February 2010 (for Joomla 1.5)

#

# Copyright (C) 2007-2010 Gavick.com. All Rights Reserved.

# License: Copyrighted Commercial Software

# Website: http://www.gavick.com

# Support: support@gavick.com   

#------------------------------------------------------------------------

# Based on T3 Framework

#------------------------------------------------------------------------

# Copyright (C) 2004-2009 J.O.O.M Solutions Co., Ltd. All Rights Reserved.

# @license - GNU/GPL, http://www.gnu.org/copyleft/gpl.html

# Author: J.O.O.M Solutions Co., Ltd

# Websites: http://www.joomlart.com - http://www.joomlancers.com

#------------------------------------------------------------------------

*/



define ('GK_TOOL_COLOR', 'gk_color');

define ('GK_TOOL_SCREEN', 'gk_screen');

define ('GK_TOOL_FONT', 'gk_font');

define ('GK_TOOL_MENU', 'gk_menu');



require_once (dirname(__FILE__).DS.'obj.extendable.php');



class GKTemplateHelper extends ObjectExtendable {

function GKTemplateHelper ($template, $_params_cookie=null) {

$helper = new GKTemplateHelper1 ($template, $_params_cookie);

$this->_extend (array($template, $helper));

}



function &getInstance($template=null, $_params_cookie=null)

{

static $instance;



if (!isset( $instance )) {

$instance = new GKTemplateHelper ($template, $_params_cookie);

}



return $instance;

}



function display ($layout) {

$this->_load ($layout);

}



function _load ($layout) {

if (($layoutpath = $this->layout_exists ($layout))) {

include ($layoutpath);

}

}



function _display ($layout) {

$tmplTools = JATemplateHelper::getInstance();

$tmplTools-> display($layout);

}



function loadBlock ($name) {

$this->_load ('blocks'.DS.$name);

}



//Override template countModules function: prevent empty count.

function countModules ($modules) {

if ($this->isContentEdit()) return 0;

$_tpl = $this->_tpl;

return $modules?$_tpl->countModules ($modules):0;

}

}



class GKTemplateHelper1 {

var $_params_cookie = null; //Params will store in cookie for user select. Default: store all params

var $_tpl = null;

var $template = '';

var $_positions = null;

var $_colwidth = null;

var $_basewidth = 10;



function GKTemplateHelper1 ($template, $_params_cookie=null) {

//$this->_extend ($template);



$this->_tpl = $template;

$this->template = $template->template;



if(!$_params_cookie) {

$this->_params_cookie = $this->_tpl->params->toArray();

} else {

foreach ($_params_cookie as $k) {

$this->_params_cookie[$k] = $this->_tpl->params->get($k);

}

}

$this->getUserSetting();



$this->_colwidth = array();

$this->_positions = array();

}



function addParamCookie ($_params_cookie) {

if (!is_array($_params_cookie)) $_params_cookie = array($_params_cookie);

$tpl = $this->_tpl;

foreach ($_params_cookie as $k) {

$this->_params_cookie[$k] = $tpl->params->get($k);

}

$this->getUserSetting();

}



function &getInstance1($template=null, $_params_cookie=null)

{

static $instance;



if (!isset( $instance )) {

$instance = new GKTemplateHelper1 ($template, $_params_cookie);

}



return $instance;

}



function getUserSetting(){

$exp = time() + 60*60*24*355;

if (isset($_COOKIE[$this->template.'_tpl']) && $_COOKIE[$this->template.'_tpl'] == $this->template){

foreach($this->_params_cookie as $k=>$v) {

$kc = $this->template."_".$k;

if (JRequest::getVar($k, null, 'GET')!== null) {

$v = preg_replace('/[\x00-\x1F\x7F<>;\/\"\'%()]/', '', JRequest::getString($k, '', 'GET'));

setcookie ($kc, $v, $exp, '/');

}else{

if (isset($_COOKIE[$kc])){

$v = $_COOKIE[$kc];

}

}

$this->setParam($k, $v);

}



}else{

setcookie ($this->template.'_tpl', $this->template, $exp, '/');

}

return $this;

}



function getParam ($param, $default='', $raw=false) {

if (isset($this->_params_cookie[$param])) {

if ($raw) return $this->_params_cookie[$param];

else return preg_replace('/[\x00-\x1F\x7F<>;\/\"\'%()]/', '', $this->_params_cookie[$param]);

}

if ($raw) $this->_tpl->params->get($param, $default);

return preg_replace('/[\x00-\x1F\x7F<>;\/\"\'%()]/', '', $this->_tpl->params->get($param, $default));

}



function setParam ($param, $value) {

$this->_params_cookie[$param] = $value;

}



function getCurrentURL(){

$cururl = JRequest::getURI();

if(($pos = strpos($cururl, "index.php"))!== false){

$cururl = substr($cururl,$pos);

}

$cururl =  JRoute::_($cururl, true, 0);

return $cururl;

}



function getCurrentMenuIndex(){

$Itemid = JRequest::getInt( 'Itemid');

$database =& JFactory::getDBO();

$id = $Itemid;

$menutype = 'mainmenu';

$ordering = '0';

while (1){

$sql = "select parent, menutype, ordering from #__menu where id = $id limit 1";

$database->setQuery($sql);

$row = null;

$row = $database->loadObject();

if ($row) {

$menutype = $row->menutype;

$ordering = $row->ordering;

if ($row->parent > 0)

{

$id = $row->parent;

}else break;

}else break;

}



$user =& JFactory::getUser();

if (isset($user))

{

$aid = $user->get('aid', 0);

$sql = "SELECT count(*) FROM #__menu AS m"

. "\nWHERE menutype='". $menutype ."' AND published='1' AND access <= '$aid' AND parent=0 and ordering < $ordering";

} else {

$sql = "SELECT count(*) FROM #__menu AS m"

. "\nWHERE menutype='". $menutype ."' AND published='1' AND parent=0 and ordering < $ordering";

}

$database->setQuery($sql);



return $database->loadResult();

}



function calSpotlight ($spotlight, $totalwidth=100, $specialwidth=0, $special='first') {



/********************************************

$spotlight = array ('position1', 'position2',...)

*********************************************/

$modules = array();

$modules_s = array();

foreach ($spotlight as $position) {

if( $this->_tpl->countModules ($position) ){

$modules_s[] = $position;

}

$modules[$position] = array('class'=>'-full','width'=>$totalwidth.'%');

}



if (!count($modules_s)) return null;

if ($specialwidth) {

if (count($modules_s)>1) {

$width = round(($totalwidth-$specialwidth)/(count($modules_s)-1),1). "%";

$specialwidth = $specialwidth . "%";

}else{

$specialwidth = $totalwidth . "%";

}

}else{

$width = (round($totalwidth/(count($modules_s)),2)). "%";

$specialwidth = $width;

}



if (count ($modules_s) > 1){

$modules[$modules_s[0]]['class'] = "-left";

$modules[$modules_s[0]]['width'] = (($special=='left')?$specialwidth - ($this->isIE()? 0.1 : 0) : $width - ($this->isIE()? 0.1 : 0)). '%';

$modules[$modules_s[count ($modules_s) - 1]]['class'] = "-right";

$modules[$modules_s[count ($modules_s) - 1]]['width'] = (($special=='right')?$specialwidth - ($this->isIE()? 0.1 : 0) : $width - ($this->isIE()? 0.1 : 0)). '%';

for ($i=1; $i<count ($modules_s) - 1; $i++){

$modules[$modules_s[$i]]['class'] = "-center";

$modules[$modules_s[$i]]['width'] = ($width - ($this->isIE()? 0.1 : 0)). '%';

}

}

return $modules;

}



function isIE6 () {

$msie='/msie\s(5\.[5-9]|[6]\.[0-9]*).*(win)/i';

$notIE6 = '/msie\s([7-9]\.[0-9]*).*(win)/i';



return !$this->spider_detect() && isset($_SERVER['HTTP_USER_AGENT']) &&

preg_match($msie,$_SERVER['HTTP_USER_AGENT']) &&

!preg_match($notIE6,$_SERVER['HTTP_USER_AGENT']) &&

!preg_match('/opera/i',$_SERVER['HTTP_USER_AGENT']);

}



function isIE () {

$msie='/msie/i';

return isset($_SERVER['HTTP_USER_AGENT']) &&

preg_match($msie,$_SERVER['HTTP_USER_AGENT']) &&

!preg_match('/opera/i',$_SERVER['HTTP_USER_AGENT']);

}



function isOP () {

return isset($_SERVER['HTTP_USER_AGENT']) &&

preg_match('/opera/i',$_SERVER['HTTP_USER_AGENT']);

}



function isFrontPage(){

return (JRequest::getCmd( 'view' ) == 'frontpage') ;

}



function isContentEdit() {

return (JRequest::getCmd( 'option' )=='com_content' && JRequest::getCmd( 'view' ) == 'article' && (JRequest::getCmd( 'task' ) == 'edit' || JRequest::getCmd( 'layout' ) == 'form'));

}



function sitename() {

$config = new JConfig();

return $config->sitename;

}



function browser () {

$agent = $_SERVER['HTTP_USER_AGENT'];

if ( strpos($agent, 'Gecko') )

{

   if ( strpos($agent, 'Netscape') )

   {

     $browser = 'NS';

   }

   else if ( strpos($agent, 'Firefox') )

   {

     $browser = 'FF';

   }

   else

   {

     $browser = 'Moz';

   }

}

else if ( strpos($agent, 'MSIE') && !preg_match('/opera/i',$agent) )

{

$msie='/msie\s(7|8\.[0-9]).*(win)/i';

    if (preg_match($msie,$agent)) $browser = 'IE7';

    else $browser = 'IE6';

}

else if ( preg_match('/opera/i',$agent) )

{

     $browser = 'OPE';

}

else

{

   $browser = 'Others';

}

return $browser;

}



function baseurl(){

return JURI::base();

}



function templateurl(){

return JURI::base()."templates/".$this->template;

}



function basepath(){

return JPATH_SITE;

}



function templatepath(){

return $this->basepath().DS."templates".DS.$this->template;

}



function getLayout () {

global $Itemid, $option;



if (($mobile = $this->mobile_device_detect_layout())) {



// if agent is Iphone

if( $mobile == 'iphone' ) {

$iphone = $this->_tpl->params->get ( 'iphone_layout', $mobile );

if ( $iphone != -1 && $this->layout_exists ($iphone) ) {

return $iphone;

}

}

// Other Handheld device

$handheld = $this->_tpl->params->get ( 'other_handheld_layout', 'handheld' );

if ( $handheld !=- 1 && $this->layout_exists ($handheld)) {

return $handheld;

}



// auto dectect and choose layout with this device

if (($mobile = $this->mobile_device_detect())) {

if ($this->layout_exists ($mobile)) return $mobile;

if ($this->layout_exists ('handheld')) return 'handheld';

}

}



$page_layouts = $this->_tpl->params->get ('page_layouts');

$page_layouts = str_replace ("<br />", "\n", $page_layouts);

$playouts = new JParameter ($page_layouts);



$layout = $playouts->get($Itemid);

if ($this->layout_exists ($layout)) return $layout;



$layout = $playouts->get($option);

if ($this->layout_exists ($layout)) return $layout;



$layout = $this->getParam ('main_layout', 'default');

if ($this->layout_exists ($layout)) return $layout;



if ($this->layout_exists ('default')) return 'default';

return null;

}



function getMenuType () {

global $Itemid, $option;



if ($this->mobile_device_detect_layout()) {

$mobile = $this->getLayout ();

if (is_file(dirname(__FILE__).DS.'menu'.DS."$mobile.class.php")) $menutype = $mobile;

else $menutype = 'handheld';

return $menutype;

}



$page_menus = $this->_tpl->params->get ('page_menus');

$page_menus = str_replace ("<br />", "\n", $page_menus);

$pmenus = new JParameter ($page_menus);



$menutype = $pmenus->get($Itemid);

if (is_file(dirname(__FILE__).DS.'menu'.DS."$menutype.class.php")) return $menutype;



$menutype = $pmenus->get($option);

if (is_file(dirname(__FILE__).DS.'menu'.DS."$menutype.class.php")) return $menutype;



$menutype = $this->getParam(GK_TOOL_MENU, 'css');

if (is_file(dirname(__FILE__).DS.'menu'.DS."$menutype.class.php")) return $menutype;

return 'css';

}



function mobile_device_detect () {

require_once ('mobile_device_detect.php');

//bypass special browser:

$special = array('jigs', 'w3c ', 'w3c-', 'w3c_');

if (in_array(strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4)), $special)) return false;

return mobile_device_detect('iphone','android','opera','blackberry','palm','windows');

}



function mobile_device_detect_layout () {

$ui = $this->getParam('ui');

return $ui == 'desktop' ? false : (($ui=='mobile' && !$this->mobile_device_detect())? 'iphone' : $this->mobile_device_detect());

}



function layout_exists ($layout) {

$layoutpath = $this->templatepath().DS.'layouts';

if(is_file ($layoutpath.DS.$layout.'.php')) return $layoutpath.DS.$layout.'.php';

return false;

}



function loadMenu ($params = null, $menutype = 'css') {

static $gkmenu;

if (!isset($gkmenu)) {

$file = dirname(__FILE__).DS.'menu'.DS."$menutype.class.php";

if (!is_file ($file)) return null;

require_once ($file);

$menuclass = "GKMenu{$menutype}";

$gkmenu = new $menuclass ($params);

//assign template object

$gkmenu->_tmpl = $this;

//load menu

$gkmenu->loadMenu();

//check css/js file

$file = $this->templatepath().DS.'css'.DS.'menu'.DS."$menutype.css";

if (is_file ($file)) $gkmenu->_css = $this->templateurl()."/css/menu/$menutype.css";

$file = $this->templatepath().DS.'js'.DS.'menu'.DS."$menutype.js";

if (is_file ($file)) $gkmenu->_js = $this->templateurl()."/js/menu/$menutype.js";

}

return $gkmenu;

}



function hasSubmenu () {

$gkmenu = $this->loadMenu();

if ($gkmenu && $gkmenu->hasSubMenu (1) && $gkmenu->showSeparatedSub ) return true;

return false;

}



function getSectionId ($catid) {

$db =& JFactory::getDBO();

$query = "SELECT section FROM #__categories WHERE id=$catid;";

$db->setQuery($query);

return $db->loadResult();

}



function getLastUpdate(){

$db = &JFactory::getDBO();

$query = 'SELECT created FROM #__content a ORDER BY created DESC LIMIT 1';

$db->setQuery($query);

$data = $db->loadObject();

if( $data->created ){  //return gmdate( 'h:i:s A', strtotime($data->created) ).' GMT ';

$date =& JFactory::getDate(strtotime($data->created));

$user =& JFactory::getUser();

    $tz = $user->getParam('timezone');

    $sec =$date->toUNIX();   //set the date time to second

    return gmdate("h:i:s A", $sec+$tz).' GMT';

}

return ;

}



function countModules ($modules) {

if ($this->isContentEdit()) return 0; $_tpl = $this->_tpl;

return $modules?$_tpl->countModules ($modules):0;

//return $modules?$this->_tpl->countModules ($modules):0;

}



function definePosition ($positions) {

$this->_positions = $positions;

//parse layout

$this->_colwidth = array();

//Left

$l = $l1 = $l2 = 0;

$left1 = $this->getPositionName ('left1');

$left2 = $this->getPositionName ('left2');

$mt = $this->getPositionName ('left-mass-top');

$mb = $this->getPositionName ('left-mass-bottom');

if ($this->countModules ("$left1") && $this->countModules ("$left2")) {

$l = 2;

$l1 = $this->getColumnBasedWidth ('left1');

$l2 = $this->getColumnBasedWidth ('left2');

} else if ($this->countModules("$left1")) {

$l = 1;

$l1 = $this->getColumnBasedWidth ('left1');

} else if ($this->countModules("$left2")) {

$l = 1;

$l2 = $this->getColumnBasedWidth ('left2');

} else if ($this->countModules ("$mt") || $this->countModules ("$mb") && !($this->countModules ("$left1") || $this->countModules ("$left2")) ){

$l = 1;

$l1 = $this->getColumnBasedWidth ('left1');

}

$cls_l = $l?"l$l":"";

$l = $l1 + $l2;



//right

$r = $r1 = $r2 = 0;

$right1 = $this->getPositionName ('right1');

$right2 = $this->getPositionName ('right2');

$mt = $this->getPositionName ('right-mass-top');

$mb = $this->getPositionName ('right-mass-bottom');

if ($this->countModules ("$right1") && $this->countModules ("$right2")) {

$r = 2;

$r1 = $this->getColumnBasedWidth ('right1');

$r2 = $this->getColumnBasedWidth ('right2');

} else if ($this->countModules("$right1")) {

$r = 1;

$r1 = $this->getColumnBasedWidth ('right1');

} else if ($this->countModules("$right2")) {

$r = 1;

$r2 = $this->getColumnBasedWidth ('right2');

} else if ($this->countModules ("$mt") || $this->countModules ("$mb") && !($this->countModules ("$right1") || $this->countModules ("$right2")) ){

$r = 1;

$r1 = $this->getColumnBasedWidth ('right1');

}

$cls_r = $r?"r$r":"";



$r = $r1 + $r2;



//inset

$inset1 = $this->getPositionName ('inset1');

$inset2 = $this->getPositionName ('inset2');

$i1=$i2=0;

if ($this->countModules("$inset1")) $i1 = $this->getColumnBasedWidth ('inset1');

if ($this->countModules("$inset2")) $i2 = $this->getColumnBasedWidth ('inset2');



//width

$this->_colwidth ['r'] = $r;

if ($r) {

$this->_colwidth ['r1'] = round($r1 * 100 / $r);

$this->_colwidth ['r2'] = 100 - $this->_colwidth ['r1'];

}

$this->_colwidth ['mw'] = 100 - $r;

$m = 100 - $l -$r;

$this->_colwidth ['l'] = ($l + $m)?round($l * 100 / ($l + $m)):0;

if ($l) {

$this->_colwidth ['l1'] = round($l1 * 100 / $l);

$this->_colwidth ['l2'] = 100 - $this->_colwidth ['l1'];

}

$this->_colwidth ['m'] = 100 - $this->_colwidth ['l'];



$c = $m - $i1 - $i2;

$this->_colwidth ['i2'] = round($i2 * 100 / $m);

$this->_colwidth ['cw'] = 100 - $this->_colwidth ['i2'];

$this->_colwidth ['i1'] = ($c+$i1)?round($i1 * 100 / ($c+$i1)):0;

$this->_colwidth ['c'] = 100 - $this->_colwidth ['i1'];



$cls_li = $this->countModules ($inset1)?'l1':'';

$cls_ri = $this->countModules ($inset2)?'r1':'';



$this->_colwidth ['cls_w'] = ($cls_l || $cls_r)?"gk-$cls_l$cls_r":"";

$this->_colwidth ['cls_m'] = ($cls_li || $cls_ri)?"gk-$cls_li$cls_ri":"";

$this->_colwidth ['cls_l'] = $this->countModules ("$left1 && $left2")?"gk-l2":($this->countModules ("$left1 || $left2")?"gk-l1":"");

$this->_colwidth ['cls_r'] = $this->countModules ("$right1 && $right2")?"gk-r2":($this->countModules ("$right1 || $right2")?"gk-r1":"");

}



function customwidth ($name, $width) {

if (!isset ($this->_customwidth)) $this->_customwidth = array();

$this->_customwidth [$name] = $width;

}



function getColumnBasedWidth ($name) {

if ($this->isContentEdit()) return 0;

return (isset ($this->_customwidth) && isset ($this->_customwidth[$name]) && $this->_customwidth[$name])? $this->_customwidth[$name]:$this->_basewidth;

}



function getPositionName ($name) {

if (isset ($this->_positions[$name])) return trim($this->_positions[$name]);

return '';

}



function hasPosition ($name) {

return $this->countModules ($this->getPositionName ($name));

}



function getColumnWidth ($name) {

if (isset($this->_colwidth [$name])) return ($this->_colwidth [$name]/* - ($this->isIE()? 0.1 : 0)*/);

return null;

}



/**

*

* Functions from GK Framework

*

*/



function checkComponent()

{

$menu = & JSite::getMenu();

return !(($this->_tpl->params->get("frontpage") == 1)? false : ($menu->getActive() == $menu->getDefault()));

}



function checkMainbody()

{

return (($this->_tpl->params->get('mainbody_pos')!= 0) && $this->countModules("mainbody") > 0);

}



function fontFamily($n)

{

switch($n)

{

case 1: return 'Verdana, Geneva, sans-serif';break;

case 2: return 'Georgia, "Times New Roman", Times, serif';break;

case 3: return 'Arial, Helvetica, sans-serif';break;

case 4: return 'Impact, Arial, Helvetica, sans-serif';break;

case 5: return 'Tahoma, Geneva, sans-serif';break;

case 6: return '"Trebuchet MS", Arial, Helvetica, sans-serif';break;

case 7: return '"Arial Black", Gadget, sans-serif';break;

case 8: return '"Times New Roman", Times, serif';break;

case 9: return '"Palatino Linotype", "Book Antiqua", Palatino, serif';break;

case 10: return '"Lucida Sans Unicode", "Lucida Grande", sans-serif';break;

case 11: return '"MS Serif", "New York", serif';break;

case 12: return '"Comic Sans MS", cursive';break;

case 13: return '"Courier New", Courier, monospace';break;

case 14: return '"Lucida Console", Monaco, monospace';break;

default: return '';break;

}

}





function spider_detect()

{

// If you want more - please add selected spiders from that list:

// http://www.user-agents.org/index.shtml

$spider_list = array(

'acme.spider', 'ahoythehomepagefinder', 'aleksika spider', 'ia_archiver', 'alkaline', 'emcspider', 'antibot', 'arachnophilia','architext', 'aretha', 'ariadne', 'arks', 'aspider', 'atn.txt', 'atomz', 'auresys', 'awbot', 'backrub', 'baiduspider', 'bigbrother', 'bjaaland', 'blackwidow', 'blogsphere', 'isspider', 'blogshares bot', 'blogvisioneye', 'blogwatcher', 'blogwise.com-metachecker', 'bloodhound', 'bobby', 'bordermanager', 'boris', 'bravobrian bstop', 'brightnet', 'bspider', 'bumblebee', 'catvschemistryspider', 'calif[^r]', 'cassandra', 'ccgcrawl', 'checkbot', 'christcrawler', 'churl', 'cj spider', 'cmc', 'collective', 'combine', 'computer_and_automation_research_institute_crawler', 'robi', 'conceptbot', 'coolbot', 'cosmixcrawler', 'crawlconvera', 'cscrawler', 'cusco', 'cyberspyder', 'cydralspyder', 'daviesbot', 'deepindex', 'denmex websearch', 'deweb', 'blindekuh', 'dienstspider', 'digger','webreader', 'cgireader', 'diibot', 'digout4u', 'directhit', 'dnabot', 'downes/referrers', 'download_express', 'dragonbot', 'dwcp', 'e-collector', 'e-societyrobot', 'ebiness', 'echo', 'eit', 'elfinbot', 'emacs', 'enterprise_search', 'esther', 'evliyacelebi', 'exabot', 'exactseek', 'exalead ng', 'ezresult', 'fangcrawl', 'fast-webcrawler', 'fastbuzz.com', 'faxobot', 'feedster crawler', 'felix', 'fetchrover', 'fido', '[^a]fish', 'flurryv', 'fdse', 'fouineur', 'franklin locator', 'freecrawl', 'frontier', 'funnelweb', 'gaisbot', 'galaxybot', 'gama', 'gazz', 'gcreep', 'getbot', 'puu', 'geturl', 'gigabot', 'gnodspider', 'golem', 'googlebot', 'gornker', 'grapnel', 'griffon', 'gromit', 'grub-client', 'hambot', 'hatena antenna', 'havindex', 'octopus', 'hometown', 'htdig', 'htmlgobble', 'pitkow', 'hyperdecontextualizer', 'finnish', 'irobot', 'iajabot', 'ibm', 'illinois state tech labs', 'imagelock', 'incywincy', 'informant', 'infoseek', 'infoseeksidewinder', 'infospider', 'ilse', 'ingrid', 'slurp', 'inspectorwww', 'intelliagent', 'cruiser', 'internet ninja', 'myweb', 'internetseer', 'iron33', 'israelisearch', 'javabee', 'jbot', 'jcrawler', 'jeeves', 'jennybot', 'jetbot', 'jobo', 'jobot', 'joebot', 'jumpstation', 'justview', 'katipo', 'kdd', 'kilroy', 'fireball', 'ko_yappo_robot', 'labelgrabber.txt', 'larbin', 'legs', 'linkidator', 'linkbot', 'linkchecker', 'linkfilter.net url verifier', 'linkscan', 'linkwalker', 'lockon', 'logo_gif', 'lycos', 'mac finder', 'macworm', 'magpie', 'marvin', 'mattie', 'mediafox', 'mediapartners-google', 'mercator', 'mercubot', 'merzscope', 'mindcrawler', 'moget', 'momspider', 'monster', 'mixcat', 'motor', 'mozdex', 'msiecrawler', 'msnbot', 'muscatferret', 'mwdsearch', 'my little bot', 'naverrobot', 'naverbot', 'meshexplorer', 'nederland.zoek', 'netresearchserver', 'netcarta', 'netcraft', 'netmechanic', 'netscoop', 'newscan-online', 'nextopiabot', 'nhse', 'nitle blog spider', 'nomad', 'gulliver', 'npbot', 'nutch', 'nzexplorer', 'obidos-bot', 'occam', 'sitegrabber', 'openfind', 'orb_search', 'overture-webcrawler', 'packrat', 'pageboy', 'parasite', 'patric', 'pegasus', 'perlcrawler', 'perman', 'petersnews', 'pka', 'phantom', 'piltdownman', 'pimptrain', 'pioneer', 'pipeliner', 'plumtreewebaccessor', 'polybot', 'pompos', 'poppi', 'iconoclast', 'pjspider', 'portalb', 'psbot', 'quepasacreep', 'raven', 'rbse', 'redalert', 'resumerobot', 'roadrunner', 'rhcs', 'robbie', 'robofox', 'francoroute', 'robozilla', 'roverbot', 'rules', 'seochat', 'safetynetrobot', 'scooter', 'search_au', 'searchprocess', 'searchspider', 'seekbot', 'semanticdiscovery', 'senrigan', 'sgscout', 'shaggy', 'shaihulud', 'sherlock-spider', 'shoutcast', 'sift', 'simbot', 'ssearcher', 'site-valet', 'sitespider', 'sitetech', 'slcrawler', 'slysearch', 'smartspider', 'snooper', 'solbot', 'soziopath', 'space bison', 'spanner', 'speedy', 'spiderbot', 'spiderline', 'spiderman', 'spiderview', 'spider_monkey', 'splatsearch.com', 'spry', 'steeler', 'suke', 'suntek', 'surveybot', 'sven', 'syndic8', 'szukacz', 'tach_bw', 'tarantula', 'tarspider', 'techbot', 'technoratibot', 'templeton', 'teoma_agent1', 'teradex', 'jubii', 'northstar', 'w3index', 'perignator', 'python', 'tkwww', 'webmoose', 'wombat', 'webfoot', 'wanderer', 'worm', 'timbobot', 'titan', 'titin', 'tlspider', 'turnitinbot', 'ucsd', 'udmsearch', 'ultraseek', 'unlost_web_crawler', 'urlck', 'vagabondo', 'valkyrie', 'victoria', 'visionsearch', 'voila', 'voyager', 'vspider', 'vwbot', 'w3m2', 'wmir', 'wapspider', 'appie', 'wallpaper', 'waypath scout', 'corev', 'web downloader', 'webbandit', 'webbase', 'webcatcher', 'webcompass', 'webcopy', 'webcraftboot', 'webfetcher', 'webfilter', 'webgather', 'weblayers', 'weblinker', 'webmirror', 'webquest', 'webrace', 'webreaper', 'websnarf', 'webspider', 'wolp', 'webstripper', 'webtrends link analyzer', 'webvac', 'webwalk', 'webwalker', 'webwatch', 'wz101', 'wget', 'whatuseek', 'whowhere', 'ferret', 'wired-digital', 'wisenutbot', 'wwwc', 'xenu link sleuth', 'xget', 'cosmos', 'yahoo', 'yandex', 'zao', 'zeus', 'zyborg'

);



foreach ($spider_list as $spider)

{

if (eregi($spider, $_SERVER['HTTP_USER_AGENT'])) return TRUE;

}



return FALSE;

}

}



make_object_extendable ('GKTemplateHelper');
« Последнее редактирование: 22.07.2011, 12:23:43 от G_EVA » Записан
Dorfman
Живу я здесь
******

Репутация: +64/-4
Offline Offline

Пол: Мужской
Сообщений: 982


Почти влез...


« Ответ #8 : 23.07.2011, 07:45:07 »

надо было не файл искать, а текст в файлах: Register, Tools...
Записан
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« Ответ #9 : 23.07.2011, 12:22:30 »

Пошла искать...
« Последнее редактирование: 23.07.2011, 12:59:43 от G_EVA » Записан
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« Ответ #10 : 23.07.2011, 13:16:17 »

И ничего не нашла. Капец какой то.

Вот код, который выдает мне Хром на главной странице:



Сорри, выдрать не удалось, только картинкой.

Так вот, в коде этом ясно указаны все ссылки. Только ГДЕ они и как до них добраться?
Записан
G_EVA
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 8


« Ответ #11 : 24.07.2011, 13:13:59 »

Тэкс, все успешно допилила сама.

Трабла засела в темплейт.ксс)))) Вот я глупое млекопетающее)))))))

Всем спасибо)))
Записан
Te100steron
Захожу иногда
**

Репутация: +0/-0
Offline Offline

Сообщений: 7


« Ответ #12 : 02.11.2011, 10:17:00 »

такая же проблема, расскажи пожалуйста как решать её?
в темплейт.ксс пробовал удалять весь блок с tools непомогло...
Записан
Страниц: [1]   Вверх
  Добавить закладку  |  Печать  
 
Перейти в:  

Рейтинг@Mail.ru Rambler Top100 Powered by SMF 1.1.16 | SMF © 2006, Simple Machines

Joomlaforum.ru is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters
the trademark holder in the United States and other countries.

LiveInternet