You are here

private static property PHPExcel_IOFactory::$_searchLocations in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php \PHPExcel_IOFactory::_searchLocations

* Search locations * * * @access private * @static

Type: array

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php, line 54

Class

PHPExcel_IOFactory
PHPExcel_IOFactory

Code

private static $_searchLocations = array(
  array(
    'type' => 'IWriter',
    'path' => 'PHPExcel/Writer/{0}.php',
    'class' => 'PHPExcel_Writer_{0}',
  ),
  array(
    'type' => 'IReader',
    'path' => 'PHPExcel/Reader/{0}.php',
    'class' => 'PHPExcel_Reader_{0}',
  ),
);