Your IP : 216.73.216.170


Current Path : /var/www/iplanru/data/www/www.i-plan.ru/plugins/system/trans/
Upload File :
Current File : /var/www/iplanru/data/www/www.i-plan.ru/plugins/system/trans/script.php

<?php
// No direct access
defined( '_JEXEC' ) or die;

class plgSystemTransInstallerScript
{

	function postflight( $type, $parent )
	{
		$db = JFactory::getDbo();
		$query = $db->getQuery( true );
		$query->update( '#__extensions' )->set( 'enabled=1' )->where( 'type=' . $db->q( 'plugin' ) )->where( 'element=' . $db->q( 'trans' ) );
		$db->setQuery( $query )->execute();

	}
}