Файл: IPBMafia.ru_IPB_3.4.6_Final_Rus _Nulled/board/upload/admin/applications/core/modules_admin/templates/searchandreplace.php
Строк: 169
<?php
/**
* <pre>
* Invision Power Services
* IP.Board v3.4.6
* Skin search and replace tool
* Last Updated: $Date: 2012-05-10 16:10:13 -0400 (Thu, 10 May 2012) $
* </pre>
*
* @author $Author: bfarber $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/company/standards.php#license
* @package IP.Board
* @subpackage Core
* @link http://www.invisionpower.com
* @since Who knows...
* @version $Revision: 10721 $
*
*/
if ( ! defined( 'IN_ACP' ) )
{
print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded 'admin.php'.";
exit();
}
class admin_core_templates_searchandreplace extends ipsCommand
{
/**
* Skin Functions Class
*
* @var object
*/
protected $skinFunctions;
/**
* Recursive depth guide
*
* @var array
*/
protected $_depthGuide = array();
/**
* Skin object
*
* @var object Skin templates
*/
protected $html;
/**
* Amount of items per go
*
* @var int
*/
protected $_bitsPerRound = 50;
/**#@+
* URL bits
*
* @var string
*/
public $form_code = '';
public $form_code_js = '';
/**#@-*/
/**
* Main class entry point
*
* @param object ipsRegistry reference
* @return @e void [Outputs to screen]
*/
public function doExecute( ipsRegistry $registry )
{
//-----------------------------------------
// Load skin
//-----------------------------------------
$this->html = $this->registry->output->loadTemplate('cp_skin_templates');
//-----------------------------------------
// Set up stuff
//-----------------------------------------
$this->form_code = $this->html->form_code = 'module=templates&section=searchandreplace';
$this->form_code_js = $this->html->form_code_js = 'module=templates§ion=searchandreplace';
//-----------------------------------------
// Load lang
//-----------------------------------------
$this->registry->getClass('class_localization')->loadLanguageFile( array( 'admin_templates' ) );
//-----------------------------------------
// Load functions and cache classes
//-----------------------------------------
require_once( IPS_ROOT_PATH . 'sources/classes/skins/skinFunctions.php' );/*noLibHook*/
require_once( IPS_ROOT_PATH . 'sources/classes/skins/skinCaching.php' );/*noLibHook*/
require_once( IPS_ROOT_PATH . 'sources/classes/skins/skinDifferences.php' );/*noLibHook*/
$this->skinFunctions = new skinDifferences( $registry );
///----------------------------------------
// What to do...
//-----------------------------------------
switch( $this->request['do'] )
{
default:
$this->registry->getClass('class_permissions')->checkPermissionAutoMsg( 'templates_manage' );
$this->_showForm();
break;
case 'start':
$this->registry->getClass('class_permissions')->checkPermissionAutoMsg( 'templates_manage' );
$this->_start();
break;
}
/* Output */
$this->registry->output->html_main .= $this->registry->output->global_template->global_frame_wrapper();
$this->registry->output->sendOutput();
}
/**
* Processes the template bits...
*
* @return string HTML
*/
protected function _start()
{
//-----------------------------------------
// INIT
//-----------------------------------------
$setID = intval( $this->request['setID'] );
$searchParents = intval( $this->request['searchParents'] );
$isRegex = intval( $this->request['isRegex'] );
$searchFor_RAW = IPSText::stripslashes( $_POST['searchFor'] );
$replaceWith_RAW = IPSText::stripslashes( $_POST['replaceWith'] );
$_finalMatches = array();
/* Checks */
if ( ! $searchFor_RAW )
{
$this->registry->output->global_error = $this->lang->words['sr_sometext'];
return $this->_showForm();
}
//-----------------------------------------
// Get template set data
//-----------------------------------------
$setData = $this->skinFunctions->fetchSkinData( $setID );
try
{
$result = $this->skinFunctions->searchTemplates( $setID, $_POST['searchFor'], $isRegex, $searchParents );
if ( $result['matchCount'] )
{
/* Finalize */
foreach( $result['matches'] as $_group => $_gdata )
{
foreach( $_gdata as $_name => $_data )
{
$_finalMatches[ $_group ][ $_name ] = $_data['template_id'];
}
}
/* Prep array */
$sessionData = array( 'sandr_set_id' => $setID,
'sandr_search_only' => ( $replaceWith_RAW ) ? 0 : 1,
'sandr_search_all' => $searchParents,
'sandr_search_for' => $searchFor_RAW,
'sandr_replace_with' => $replaceWith_RAW,
'sandr_is_regex' => $isRegex,
'sandr_template_count' => $result['searchCount'],
'sandr_template_processed' => $result['searchCount'],
'sandr_updated' => time(),
'sandr_results' => serialize( $_finalMatches ) );
/* Insert into DB */
$this->DB->insert( 'template_sandr', $sessionData );
$sessionData['sandr_session_id'] = $this->DB->getInsertID();
}
else
{
$this->registry->output->global_error = $this->lang->words['sr_nomatches'];
return $this->_showForm();
}
//-----------------------------------------
// Print it...
//-----------------------------------------
$this->registry->output->html .= $this->html->searchandreplace_listTemplateGroups( $_finalMatches, $setData, $sessionData );
}
catch( Exception $error )
{
$this->registry->output->global_error = $error->getMessage();
return $this->_showForm();
}
}
/**
* Displays the search form
*
* @return @e void
*/
protected function _showForm()
{
//-----------------------------------------
// INIT
//-----------------------------------------
$this->registry->output->html .= $this->html->searchandreplace_form( $this->skinFunctions->getTiersFunction()->fetchAllsItemDropDown(), $this->skinFunctions->fetchNumberTemplateBits(), $this->_bitsPerRound );
}
}