| 9 |
*/ |
*/ |
| 10 |
|
|
| 11 |
/** ensure this file is being included by a parent file */ |
/** ensure this file is being included by a parent file */ |
| 12 |
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); |
defined( '_VALID_MOS' ) or die( T_('Direct Access to this location is not allowed.') ); |
| 13 |
|
|
| 14 |
require_once( $mainframe->getPath( 'admin_html' ) ); |
require_once( $mainframe->getPath( 'admin_html' ) ); |
| 15 |
require_once( $mainframe->getPath( 'class' ) ); |
require_once( $mainframe->getPath( 'class' ) ); |
| 50 |
installFromUrl ($classMap[$element], $option, $element, $client); |
installFromUrl ($classMap[$element], $option, $element, $client); |
| 51 |
break; |
break; |
| 52 |
|
|
| 53 |
|
case 'thesource': |
| 54 |
|
HTML_installer::theSourceForm($option, $element, $client); |
| 55 |
|
break; |
| 56 |
|
|
| 57 |
case 'remove': |
case 'remove': |
| 58 |
$uninstaller = $element.'_uninstall'; |
$uninstaller = $element.'_uninstall'; |
| 59 |
if (is_callable($uninstaller)) { |
if (is_callable($uninstaller)) { |
| 60 |
$cid = mosGetParam($_REQUEST, 'cid', array(0)); |
$cid = mosGetParam($_REQUEST, 'cid', array(0)); |
| 61 |
if (is_array($cid) AND isset($cid[0])) { |
if (is_array($cid) AND isset($cid[0])) { |
| 62 |
$result = $uninstaller ($cid[0], $option, $client); |
$uninstaller ($cid[0], $option, $client); |
| 63 |
$msg = ''; |
exit (); |
| 64 |
} |
} |
| 65 |
mosRedirect(returnTo($option, $element, $client), $result ? 'Success ' . $msg : 'Failed ' . $msg ); |
mosRedirect(returnTo($option, $element, $client), T_('There was nothing selected to be uninstalled') ); |
| 66 |
} |
} |
| 67 |
else echo "Uninstaller not found for element [$element]"; |
else mosRedirect(returnTo($option, $element, $client), T_('Uninstaller not found for element [%s]') ); |
| 68 |
break; |
break; |
| 69 |
|
|
| 70 |
default: |
default: |
| 73 |
if (file_exists( $path )) { |
if (file_exists( $path )) { |
| 74 |
require $path; |
require $path; |
| 75 |
} else { |
} else { |
| 76 |
echo "Installer not found for element [$element]"; |
echo sprintf(T_('Installer not found for element [%s]'), $element); |
| 77 |
} |
} |
| 78 |
break; |
break; |
| 79 |
} |
} |
| 80 |
} |
} |
| 81 |
else { |
else { |
| 82 |
echo "Installer not available for element [$element]"; |
echo sprintf(T_('Installer not available for element [%s]'), $element); |
| 83 |
} |
} |
| 84 |
|
|
| 85 |
|
|
| 102 |
function uploadPackage( $installerClass, $option, $element, $client ) { |
function uploadPackage( $installerClass, $option, $element, $client ) { |
| 103 |
global $mainframe; |
global $mainframe; |
| 104 |
|
|
|
$installer =& new $installerClass(); |
|
|
|
|
| 105 |
// Check if file uploads are enabled |
// Check if file uploads are enabled |
| 106 |
if (!(bool)ini_get('file_uploads')) { |
if (!(bool)ini_get('file_uploads')) { |
| 107 |
HTML_installer::showInstallMessage( "The installer can't continue before file uploads are enabled. Please use the install from directory method.", |
HTML_installer::showInstallMessage(T_('The installer can\'t continue before file uploads are enabled. Please use the install from directory method.'), |
| 108 |
'Installer - Error', returnTo( $option, $element, $client ) ); |
T_('Installer - Error'), returnTo( $option, $element, $client ) ); |
| 109 |
exit(); |
exit(); |
| 110 |
} |
} |
| 111 |
|
|
| 112 |
// Check that the zlib is available |
// Check that the zlib is available |
| 113 |
if(!extension_loaded('zlib')) { |
if(!extension_loaded('zlib')) { |
| 114 |
HTML_installer::showInstallMessage( "The installer can't continue before zlib is installed", |
HTML_installer::showInstallMessage(T_('The installer can\'t continue before zlib is installed'), |
| 115 |
'Installer - Error', returnTo( $option, $element, $client ) ); |
T_('Installer - Error'), returnTo( $option, $element, $client ) ); |
| 116 |
exit(); |
exit(); |
| 117 |
} |
} |
| 118 |
|
|
| 119 |
$userfile = mosGetParam( $_FILES, 'userfile', null ); |
$userfile = mosGetParam( $_FILES, 'userfile', null ); |
| 120 |
|
|
| 121 |
if (!$userfile) { |
if (!$userfile) { |
| 122 |
HTML_installer::showInstallMessage( 'No file selected', 'Upload new module - error', |
HTML_installer::showInstallMessage( T_('No file selected'), T_('Upload new module - error'), |
| 123 |
returnTo( $option, $element, $client )); |
returnTo( $option, $element, $client )); |
| 124 |
exit(); |
exit(); |
| 125 |
} |
} |
| 127 |
$userfile_name = $userfile['name']; |
$userfile_name = $userfile['name']; |
| 128 |
|
|
| 129 |
$msg = ''; |
$msg = ''; |
|
$resultdir = uploadFile( $userfile['tmp_name'], $userfile['name'], $msg ); |
|
| 130 |
|
|
| 131 |
if ($resultdir !== false) { |
if (uploadFile( $userfile['tmp_name'], $userfile['name'], $msg )) { |
| 132 |
|
$installer =& new $installerClass(); |
| 133 |
if (!$installer->extractArchive( $userfile['name'] )) { |
if (!$installer->extractArchive( $userfile['name'] )) { |
| 134 |
HTML_installer::showInstallMessage( $installer->getErrors(), 'Upload '.$element.' - Upload Failed', |
$installer->cleanUpInstall(); |
| 135 |
|
HTML_installer::showInstallMessage( $installer->getErrors(), sprintf(T_('Upload %s - Upload Failed'), $element), |
| 136 |
returnTo( $option, $element, $client ) ); |
returnTo( $option, $element, $client ) ); |
| 137 |
} |
} |
| 138 |
$ret = $installer->install(); |
$ret = $installer->install(); |
|
|
|
|
HTML_installer::showInstallMessage( $installer->getErrors(), 'Upload '.$element.' - '.($ret ? 'Success' : 'Failed'), |
|
|
returnTo( $option, $element, $client ) ); |
|
| 139 |
$installer->cleanUpInstall(); |
$installer->cleanUpInstall(); |
| 140 |
} else { |
HTML_installer::showInstallMessage( $installer->getErrors(), T_('Upload ').$element.' - '.($ret ? T_('Success') : T_('Failed')), |
|
HTML_installer::showInstallMessage( $msg, 'Upload '.$element.' - Upload Error', |
|
| 141 |
returnTo( $option, $element, $client ) ); |
returnTo( $option, $element, $client ) ); |
| 142 |
} |
} |
| 143 |
|
else HTML_installer::showInstallMessage( $msg, sprintf(T_('Upload %s - Upload Error'), $element), |
| 144 |
|
returnTo( $option, $element, $client ) ); |
| 145 |
} |
} |
| 146 |
|
|
| 147 |
/** |
/** |
| 150 |
*/ |
*/ |
| 151 |
function installFromDirectory( $installerClass, $option, $element, $client ) { |
function installFromDirectory( $installerClass, $option, $element, $client ) { |
| 152 |
$userfile = mosGetParam( $_REQUEST, 'userfile', '' ); |
$userfile = mosGetParam( $_REQUEST, 'userfile', '' ); |
|
|
|
| 153 |
if (!$userfile) { |
if (!$userfile) { |
| 154 |
mosRedirect( "index2.php?option=$option&element=module", T_('Please select a directory') ); |
mosRedirect( "index2.php?option=$option&element=module", T_('Please select a directory') ); |
| 155 |
} |
} |
|
|
|
|
$installer =& new $installerClass(); |
|
|
|
|
| 156 |
$path = mosPathName( $userfile ); |
$path = mosPathName( $userfile ); |
| 157 |
if (!is_dir( $path )) { |
if (!is_dir( $path )) { |
| 158 |
$path = dirname( $path ); |
$path = dirname( $path ); |
| 159 |
} |
} |
| 160 |
|
$installer =& new $installerClass(); |
| 161 |
$ret = $installer->install( $path ); |
$ret = $installer->install( $path ); |
| 162 |
|
$installer->cleanUpInstall(); |
| 163 |
HTML_installer::showInstallMessage( $installer->getErrors(), T_('Install new ').$element.' - '.($ret ? T_('Success') : T_('Error')), |
HTML_installer::showInstallMessage( $installer->getErrors(), T_('Install new ').$element.' - '.($ret ? T_('Success') : T_('Error')), |
| 164 |
returnTo( $option, $element, $client ) ); |
returnTo( $option, $element, $client ) ); |
| 165 |
} |
} |
| 168 |
* @param string The URL option |
* @param string The URL option |
| 169 |
*/ |
*/ |
| 170 |
function installFromUrl( $installerClass, $option, $element, $client ) { |
function installFromUrl( $installerClass, $option, $element, $client ) { |
| 171 |
$userfile = mosGetParam( $_REQUEST, 'userurl', '' ); |
// Check that the zlib is available |
| 172 |
|
if(!extension_loaded('zlib')) { |
| 173 |
if (!$userfile) { |
HTML_installer::showInstallMessage( T_('The installer can\'t continue before zlib is installed'), |
| 174 |
mosRedirect( "index2.php?option=$option&element=module", T_('Please select an HTTP URL') ); |
'Installer - Error', returnTo( $option, $element, $client ) ); |
| 175 |
|
exit(); |
| 176 |
} |
} |
| 177 |
|
$userurl = mosGetParam( $_REQUEST, 'userurl', '' ); |
| 178 |
$installer =& new $installerClass(); |
if (!$userurl) { |
| 179 |
|
HTML_installer::showInstallMessage(T_('Please select an HTTP URL'), |
| 180 |
|
T_('Installer - Error'), returnTo( $option, $element, $client ) ); |
| 181 |
|
} |
| 182 |
|
$url_data = parse_url($userurl); |
| 183 |
|
if (isset($url_data['path'])) $userfilename = basename($url_data['path']); |
| 184 |
|
else $userfilename = ''; |
| 185 |
|
if (!$userfilename) HTML_installer::showInstallMessage(T_('The URL did not define a file name'), |
| 186 |
|
T_('Installer - Error'), returnTo( $option, $element, $client ) ); |
| 187 |
$msg = ''; |
$msg = ''; |
| 188 |
$resultdir = uploadUrl( $userfile, $msg ); |
if (uploadUrl($userurl, $userfilename, $msg )) { |
| 189 |
|
$installer = new $installerClass(); |
| 190 |
if ($resultdir !== false) { |
if (!$installer->extractArchive($userfilename)) { |
| 191 |
if (!$installer->extractArchive( $userfile['name'] )) { |
$installer->cleanUpInstall(); |
| 192 |
HTML_installer::showInstallMessage( $installer->getErrors(), 'Upload '.$element.' - Upload Failed', |
HTML_installer::showInstallMessage( $installer->getErrors(), T_('Upload ').$element.' - '.T_('Failed'), |
| 193 |
returnTo( $option, $element, $client ) ); |
returnTo( $option, $element, $client ) ); |
| 194 |
} |
} |
| 195 |
$ret = $installer->install(); |
$ret = $installer->install(); |
|
|
|
|
HTML_installer::showInstallMessage( $installer->getErrors(), 'Upload '.$element.' - '.($ret ? 'Success' : 'Failed'), |
|
|
returnTo( $option, $element, $client ) ); |
|
| 196 |
$installer->cleanUpInstall(); |
$installer->cleanUpInstall(); |
| 197 |
|
HTML_installer::showInstallMessage( $installer->getErrors(), T_('Upload ').$element.' - '.($ret ? T_('Success') : T_('Failed')), |
| 198 |
|
returnTo( $option, $element, $client ) ); |
| 199 |
} else { |
} else { |
| 200 |
HTML_installer::showInstallMessage( $msg, 'Upload '.$element.' - Upload Error', |
HTML_installer::showInstallMessage( $msg, T_('Upload ').$element.' - '.T_('Error'), |
| 201 |
returnTo( $option, $element, $client ) ); |
returnTo( $option, $element, $client ) ); |
| 202 |
} |
} |
| 203 |
} |
} |
| 204 |
/** |
/** |
|
* |
|
|
* @param |
|
|
*/ |
|
|
function removeElement( $installerClass, $option, $element, $client ) { |
|
|
$cid = mosGetParam( $_REQUEST, 'cid', array(0) ); |
|
|
if (!is_array( $cid )) { |
|
|
$cid = array(0); |
|
|
} |
|
|
|
|
|
$installer =& new $installerClass(); |
|
|
$result = false; |
|
|
if ($cid[0]) { |
|
|
$ret = $installer->uninstall( $cid[0], $option, $client ); |
|
|
} |
|
|
else $ret = 1; |
|
|
|
|
|
HTML_installer::showInstallMessage( $installer->getErrors(), T_('Uninstall ').$element.' - '.($ret ? T_('Success') : T_('Error')), |
|
|
returnTo( $option, $element, $client ) ); |
|
|
} |
|
|
/** |
|
| 205 |
* @param string The name of the php (temporary) uploaded file |
* @param string The name of the php (temporary) uploaded file |
| 206 |
* @param string The name of the file to put in the temp directory |
* @param string The name of the file to put in the temp directory |
| 207 |
* @param string The message to return |
* @param string The message to return |
| 234 |
* @param string The name of the file to put in the temp directory |
* @param string The name of the file to put in the temp directory |
| 235 |
* @param string The message to return |
* @param string The message to return |
| 236 |
*/ |
*/ |
| 237 |
function uploadUrl( $filename, &$msg ) { |
function uploadUrl( $userurl, $userfilename, &$msg ) { |
| 238 |
global $mosConfig_absolute_path; |
global $mosConfig_absolute_path; |
| 239 |
$baseDir = mosPathName( $mosConfig_absolute_path . '/media' ); |
$baseDir = mosPathName( $mosConfig_absolute_path . '/media' ); |
|
|
|
| 240 |
if (file_exists( $baseDir )) { |
if (file_exists( $baseDir )) { |
| 241 |
if (is_writable( $baseDir )) { |
if (is_writable( $baseDir )) { |
| 242 |
if (move_uploaded_file( $filename, $baseDir . $userfile_name )) { |
if ($fpin = fopen($userurl, 'rb') AND is_resource($fpin)) { |
| 243 |
if (mosChmod( $baseDir . $userfile_name )) { |
if ($fpout = fopen($baseDir.$userfilename, 'wb') AND is_resource($fpout)) { |
| 244 |
return true; |
while (!feof($fpin)) { |
| 245 |
} else { |
$data = fgets($fpin, 1024); |
| 246 |
$msg = T_('Failed to change the permissions of the uploaded file.'); |
fwrite($fpout, $data); |
| 247 |
} |
} |
| 248 |
} else { |
fclose($fpout); |
| 249 |
$msg = T_('Failed to move uploaded file to <code>/media</code> directory.'); |
fclose($fpin); |
| 250 |
|
if (mosChmod( $baseDir.$userfilename )) return true; |
| 251 |
|
else $msg = T_('Failed to change the permissions of the uploaded file.'); |
| 252 |
} |
} |
| 253 |
} else { |
else $msg = T_('Failed to open the local file from the URL.'); |
|
$msg = T_('Upload failed as <code>/media</code> directory is not writable.'); |
|
| 254 |
} |
} |
| 255 |
} else { |
else $msg = T_('Failed to open the specified URL.'); |
| 256 |
$msg = T_('Upload failed as <code>/media</code> directory does not exist.'); |
} |
| 257 |
|
else $msg = T_('Upload failed as <code>/media</code> directory is not writable.'); |
| 258 |
} |
} |
| 259 |
|
else $msg = T_('Upload failed as <code>/media</code> directory does not exist.'); |
| 260 |
return false; |
return false; |
| 261 |
} |
} |
| 262 |
|
|
| 276 |
exit(); |
exit(); |
| 277 |
} |
} |
| 278 |
if ($row->iscore) { |
if ($row->iscore) { |
|
die(T_('Is core component - may not be deleted')); |
|
| 279 |
HTML_installer::showInstallMessage(sprintf(T_('Component %s is a core component, and can not be uninstalled.<br />You need to unpublish it if you don\'t want to use it'), $row->name), 'Uninstall - error', |
HTML_installer::showInstallMessage(sprintf(T_('Component %s is a core component, and can not be uninstalled.<br />You need to unpublish it if you don\'t want to use it'), $row->name), 'Uninstall - error', |
| 280 |
"index2.php?option=$option&element=component"); |
"index2.php?option=$option&element=component"); |
| 281 |
exit(); |
exit(); |
| 284 |
$here = mosPathName( mamboCore::get('mosConfig_absolute_path').'/administrator/components/'.$row->option ); |
$here = mosPathName( mamboCore::get('mosConfig_absolute_path').'/administrator/components/'.$row->option ); |
| 285 |
$filesindir = mosReadDirectory($here, '.xml$'); |
$filesindir = mosReadDirectory($here, '.xml$'); |
| 286 |
if (count($filesindir) > 0) { |
if (count($filesindir) > 0) { |
| 287 |
|
$allerrors = new mosErrorSet(); |
| 288 |
foreach ($filesindir as $file) { |
foreach ($filesindir as $file) { |
| 289 |
$parser =& new mosUninstallXML ($here.$file); |
$parser =& new mosUninstallXML ($here.$file); |
| 290 |
$parser->uninstall(); |
$parser->uninstall(); |
| 291 |
if ($parser->errors->getMaxLevel() >= _MOS_ERROR_FATAL) return false; |
$allerrors->mergeAnother($parser->getErrors()); |
| 292 |
} |
} |
| 293 |
|
$ret = ($allerrors->getMaxLevel() < _MOS_ERROR_FATAL); |
| 294 |
|
HTML_installer::showInstallMessage( $allerrors->getErrors(), T_('Uninstall component - ').($ret ? T_('Success') : T_('Error')), |
| 295 |
|
returnTo( $option, 'component', $client ) ); |
| 296 |
} |
} |
| 297 |
else { |
else { |
| 298 |
// no XML file |
$com_name = $row->option; |
| 299 |
return false; |
$dir = new mosDirectory(mosPathName(mamboCore::get('mosConfig_absolute_path').'/components/'.$com_name)); |
| 300 |
/* |
$dir->deleteAll(); |
| 301 |
HTML_installer::showInstallMessage( 'Could not find XML Setup file in '.$mosConfig_absolute_path.'/administrator/components/'.$row->option, |
$dir = new mosDirectory(mosPathName(mamboCore::get('mosConfig_absolute_path').'/administrator/components/'.$com_name)); |
| 302 |
'Uninstall - error', $option, 'component' ); |
$dir->deleteAll(); |
| 303 |
exit(); |
$sql = "DELETE FROM #__components WHERE `option`='$com_name'"; |
| 304 |
*/ |
$database->setQuery($sql); |
| 305 |
|
$database->query(); |
| 306 |
|
HTML_installer::showInstallMessage( T_('Uninstaller could not find XML file, but cleaned database'), T_('Uninstall ').T_('component - ').T_('Success'), |
| 307 |
|
returnTo( $option, 'component', $client ) ); |
| 308 |
} |
} |
| 309 |
return true; |
exit(); |
| 310 |
} |
} |
| 311 |
|
|
| 312 |
/** |
/** |
| 336 |
$xmlfile = $basepath . $row->module . '.xml'; |
$xmlfile = $basepath . $row->module . '.xml'; |
| 337 |
$parser =& new mosUninstallXML ($xmlfile); |
$parser =& new mosUninstallXML ($xmlfile); |
| 338 |
$parser->uninstall(); |
$parser->uninstall(); |
| 339 |
if ($parser->errors->getMaxLevel() < _MOS_ERROR_FATAL) return true; |
$ret = ($parser->errors->getMaxLevel() < _MOS_ERROR_FATAL); |
| 340 |
return false; |
HTML_installer::showInstallMessage( $parser->errors->getErrors(), T_('Uninstall module - ').($ret ? T_('Success') : T_('Error')), |
| 341 |
|
returnTo( $option, 'module', $client ) ); |
| 342 |
|
exit (); |
| 343 |
} |
} |
| 344 |
|
|
| 345 |
/** |
/** |
| 351 |
function mambot_uninstall( $id, $option, $client=0 ) { |
function mambot_uninstall( $id, $option, $client=0 ) { |
| 352 |
$database =& mamboDatabase::getInstance(); |
$database =& mamboDatabase::getInstance(); |
| 353 |
$mosConfig_absolute_path = mamboCore::get('mosConfig_absolute_path'); |
$mosConfig_absolute_path = mamboCore::get('mosConfig_absolute_path'); |
| 354 |
$database->setQuery( "SELECT name, folder, element, iscore FROM #__mambots WHERE id = '$id'" ); |
$database->setQuery( "SELECT name, folder, element, iscore FROM #__mambots WHERE id = $id" ); |
| 355 |
$database->loadObject( $row ); |
$database->loadObject( $row ); |
| 356 |
if ($database->getErrorNum()) { |
if ($database->getErrorNum()) { |
| 357 |
HTML_installer::showInstallMessage( $database->stderr(), T_('Uninstall - error'), |
HTML_installer::showInstallMessage( $database->stderr(), T_('Uninstall - error'), |
| 369 |
exit(); |
exit(); |
| 370 |
} |
} |
| 371 |
$xmlfile = $mosConfig_absolute_path.'/mambots/'.$row->folder.'/'.$row->element.'.xml'; |
$xmlfile = $mosConfig_absolute_path.'/mambots/'.$row->folder.'/'.$row->element.'.xml'; |
| 372 |
|
if (file_exists($xmlfile)) { |
| 373 |
$parser =& new mosUninstallXML ($xmlfile); |
$parser =& new mosUninstallXML ($xmlfile); |
| 374 |
$parser->uninstall(); |
$ret = $parser->uninstall(); |
| 375 |
if ($parser->errors->getMaxLevel() < _MOS_ERROR_FATAL) return true; |
$showerrors = $parser->getErrors(); |
| 376 |
return false; |
} |
| 377 |
|
else { |
| 378 |
|
$database->setQuery("DELETE FROM #__mambots WHERE id = $id"); |
| 379 |
|
$ret = $database->query(); |
| 380 |
|
$showerrors = T_('Uninstaller did its best with no XML file present'); |
| 381 |
|
} |
| 382 |
|
HTML_installer::showInstallMessage( $showerrors, T_('Uninstall mambot - ').($ret ? T_('Success') : T_('Error')), |
| 383 |
|
returnTo( $option, 'mambot', $client ) ); |
| 384 |
|
exit (); |
| 385 |
} |
} |
| 386 |
|
|
| 387 |
/** |
/** |
| 409 |
$tdir = new mosDirectory($path); |
$tdir = new mosDirectory($path); |
| 410 |
$tdir->deleteAll(); |
$tdir->deleteAll(); |
| 411 |
} |
} |
| 412 |
return true; |
HTML_installer::showInstallMessage( T_('Uninstall template - ').T_('Success'), |
| 413 |
|
returnTo( $option, 'template', $client ) ); |
| 414 |
|
exit (); |
| 415 |
} |
} |
| 416 |
|
|
| 417 |
/** |
/** |
| 428 |
if (file_exists( $xmlfile )) { |
if (file_exists( $xmlfile )) { |
| 429 |
$parser =& new mosUninstallXML ($xmlfile); |
$parser =& new mosUninstallXML ($xmlfile); |
| 430 |
$parser->uninstall(); |
$parser->uninstall(); |
| 431 |
if ($parser->errors->getMaxLevel() < _MOS_ERROR_FATAL) return true; |
$ret = ($parser->errors->getMaxLevel() < _MOS_ERROR_FATAL); |
| 432 |
return false; |
HTML_installer::showInstallMessage( $parser->errors->getErrors(), T_('Uninstall language - ').($ret ? T_('Success') : T_('Error')), |
| 433 |
|
returnTo( $option, 'language', $client ) ); |
| 434 |
} |
} |
| 435 |
else { |
else HTML_installer::showInstallMessage( T_('Language id empty, cannot remove files'), T_('Uninstall - error'), "index2.php?option=com_languages"); |
|
HTML_installer::showInstallMessage( T_('Language id empty, cannot remove files'), T_('Uninstall - error'), "index2.php?option=com_languages"); |
|
| 436 |
exit(); |
exit(); |
| 437 |
} |
} |
|
} |
|
| 438 |
|
|
| 439 |
|
|
| 440 |
?> |
?> |