Change all incorrect capitalization of the Tz\Wordpress namespace to Tz\WordPress
Showing
55 changed files
with
56 additions
and
56 deletions
| 1 | <?php | 1 | <?php |
| 2 | namespace Tz\Wordpress\Tools\ExcelReader; | 2 | namespace Tz\WordPress\Tools\ExcelReader; |
| 3 | 3 | ||
| 4 | define('NUM_BIG_BLOCK_DEPOT_BLOCKS_POS', 0x2c); | 4 | define('NUM_BIG_BLOCK_DEPOT_BLOCKS_POS', 0x2c); |
| 5 | define('SMALL_BLOCK_DEPOT_BLOCK_POS', 0x3c); | 5 | define('SMALL_BLOCK_DEPOT_BLOCK_POS', 0x3c); | ... | ... |
| ... | @@ -66,7 +66,7 @@ class PHPExcel_CachedObjectStorage_CacheBase { | ... | @@ -66,7 +66,7 @@ class PHPExcel_CachedObjectStorage_CacheBase { |
| 66 | protected $_cellCache = array(); | 66 | protected $_cellCache = array(); |
| 67 | 67 | ||
| 68 | 68 | ||
| 69 | public function __construct(Tz\Wordpress\Tools\ExcelWriter\PHPExcel_Worksheet $parent) { | 69 | public function __construct(Tz\WordPress\Tools\ExcelWriter\PHPExcel_Worksheet $parent) { |
| 70 | // Set our parent worksheet. | 70 | // Set our parent worksheet. |
| 71 | // This is maintained within the cache controller to facilitate re-attaching it to PHPExcel_Cell objects when | 71 | // This is maintained within the cache controller to facilitate re-attaching it to PHPExcel_Cell objects when |
| 72 | // they are woken from a serialized state | 72 | // they are woken from a serialized state |
| ... | @@ -97,7 +97,7 @@ class PHPExcel_CachedObjectStorage_CacheBase { | ... | @@ -97,7 +97,7 @@ class PHPExcel_CachedObjectStorage_CacheBase { |
| 97 | * @return void | 97 | * @return void |
| 98 | * @throws Exception | 98 | * @throws Exception |
| 99 | */ | 99 | */ |
| 100 | public function updateCacheData(Tz\Wordpress\Tools\ExcelWriter\PHPExcel_Cell $cell) { | 100 | public function updateCacheData(Tz\WordPress\Tools\ExcelWriter\PHPExcel_Cell $cell) { |
| 101 | return $this->addCacheData($cell->getCoordinate(),$cell); | 101 | return $this->addCacheData($cell->getCoordinate(),$cell); |
| 102 | } // function updateCacheData() | 102 | } // function updateCacheData() |
| 103 | 103 | ... | ... |
| ... | @@ -43,7 +43,7 @@ class PHPExcel_CachedObjectStorage_Memory extends PHPExcel_CachedObjectStorage_C | ... | @@ -43,7 +43,7 @@ class PHPExcel_CachedObjectStorage_Memory extends PHPExcel_CachedObjectStorage_C |
| 43 | * @return void | 43 | * @return void |
| 44 | * @throws Exception | 44 | * @throws Exception |
| 45 | */ | 45 | */ |
| 46 | public function addCacheData($pCoord, Tz\Wordpress\Tools\ExcelWriter\PHPExcel_Cell $cell) { | 46 | public function addCacheData($pCoord, Tz\WordPress\Tools\ExcelWriter\PHPExcel_Cell $cell) { |
| 47 | $this->_cellCache[$pCoord] = $cell; | 47 | $this->_cellCache[$pCoord] = $cell; |
| 48 | return $cell; | 48 | return $cell; |
| 49 | } // function addCacheData() | 49 | } // function addCacheData() | ... | ... |
| 1 | <?php | 1 | <?php |
| 2 | namespace Tz\Wordpress\Tools\ExcelWriter; | 2 | namespace Tz\WordPress\Tools\ExcelWriter; |
| 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ | 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ |
| 4 | // +----------------------------------------------------------------------+ | 4 | // +----------------------------------------------------------------------+ |
| 5 | // | PHP Version 4 | | 5 | // | PHP Version 4 | | ... | ... |
| 1 | <?php | 1 | <?php |
| 2 | namespace Tz\Wordpress\Tools\ExcelWriter; | 2 | namespace Tz\WordPress\Tools\ExcelWriter; |
| 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ | 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ |
| 4 | // +----------------------------------------------------------------------+ | 4 | // +----------------------------------------------------------------------+ |
| 5 | // | PHP Version 4 | | 5 | // | PHP Version 4 | | ... | ... |
| 1 | <?php | 1 | <?php |
| 2 | namespace Tz\Wordpress\Tools\ExcelWriter; | 2 | namespace Tz\WordPress\Tools\ExcelWriter; |
| 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ | 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ |
| 4 | // +----------------------------------------------------------------------+ | 4 | // +----------------------------------------------------------------------+ |
| 5 | // | PHP Version 4 | | 5 | // | PHP Version 4 | | ... | ... |
| 1 | <?php | 1 | <?php |
| 2 | namespace Tz\Wordpress\Tools\ExcelWriter; | 2 | namespace Tz\WordPress\Tools\ExcelWriter; |
| 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ | 3 | /* vim: set expandtab tabstop=4 shiftwidth=4: */ |
| 4 | // +----------------------------------------------------------------------+ | 4 | // +----------------------------------------------------------------------+ |
| 5 | // | PHP Version 4 | | 5 | // | PHP Version 4 | | ... | ... |
| ... | @@ -122,7 +122,7 @@ function CSVExport($arr) { | ... | @@ -122,7 +122,7 @@ function CSVExport($arr) { |
| 122 | return $out; | 122 | return $out; |
| 123 | } | 123 | } |
| 124 | 124 | ||
| 125 | function XLSExport ($arr, \Tz\Wordpress\Tools\ExcelWriter\PHPExcel $writer) { | 125 | function XLSExport ($arr, \Tz\WordPress\Tools\ExcelWriter\PHPExcel $writer) { |
| 126 | if (count($arr) < 1) return false; | 126 | if (count($arr) < 1) return false; |
| 127 | 127 | ||
| 128 | $sheet = $writer->getActiveSheet(); | 128 | $sheet = $writer->getActiveSheet(); | ... | ... |
-
Please register or sign in to post a comment