| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/boutiques/app/code/core/Mage/Adminhtml/Model/Extension/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Extension packages files collection
*
*/
class Mage_Adminhtml_Model_Extension_Collection extends Varien_Data_Collection_Filesystem
{
/**
* Files and folders regexsp
*
* @var string
*/
protected $_allowedDirsMask = '/^[a-z0-9\.\-]+$/i';
protected $_allowedFilesMask = '/^[a-z0-9\.\-\_]+\.(xml|ser)$/i';
protected $_disallowedFilesMask = '/^package\.xml$/i';
/**
* Base dir where packages are located
*
* @var string
*/
protected $_baseDir = '';
/**
* Set base dir
*/
public function __construct()
{
$this->_baseDir = Mage::getBaseDir('var') . DS . 'pear';
$io = new Varien_Io_File();
$io->setAllowCreateFolders(true)->createDestinationDir($this->_baseDir);
$this->addTargetDir($this->_baseDir);
}
/**
* Row generator
*
* @param string $filename
* @return array
*/
protected function _generateRow($filename)
{
$row = parent::_generateRow($filename);
$row['package'] = preg_replace('/\.(xml|ser)$/', '', str_replace($this->_baseDir . DS, '', $filename));
$row['filename_id'] = $row['package'];
$folder = explode(DS, $row['package']);
array_pop($folder);
$row['folder'] = DS;
if (!empty($folder)) {
$row['folder'] = implode(DS, $folder) . DS;
}
return $row;
}
/**
* Get all folders as options array
*
* @return array
*/
public function collectFolders()
{
$collectFiles = $this->_collectFiles;
$collectDirs = $this->_collectDirs;
$this->setCollectFiles(false)->setCollectDirs(true);
$this->_collectRecursive($this->_baseDir);
$result = array(DS => DS);
foreach ($this->_collectedDirs as $dir) {
$dir = str_replace($this->_baseDir . DS, '', $dir) . DS;
$result[$dir] = $dir;
}
$this->setCollectFiles($collectFiles)->setCollectDirs($collectDirs);
return $result;
}
}