Добавил namespace и зависимости
This commit is contained in:
parent
e9f7c23990
commit
32ec09a66a
92 changed files with 454 additions and 128 deletions
|
|
@ -1,6 +1,8 @@
|
|||
<?php
|
||||
|
||||
class Excel_DateTime
|
||||
namespace ctiso\Excel;
|
||||
|
||||
class DateTime
|
||||
{
|
||||
public $value;
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,11 @@
|
|||
/**
|
||||
* Документ
|
||||
*/
|
||||
class Excel_Document {
|
||||
namespace ctiso\Excel;
|
||||
use XMLWriter,
|
||||
Exception;
|
||||
|
||||
class Document {
|
||||
static $ns = "urn:schemas-microsoft-com:office:spreadsheet";
|
||||
private $table = array ();
|
||||
protected $styles = array();
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
<?php
|
||||
|
||||
class Excel_Number
|
||||
namespace ctiso\Excel;
|
||||
|
||||
class Number
|
||||
{
|
||||
public $value;
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@
|
|||
/**
|
||||
* Клетка таблицы
|
||||
*/
|
||||
namespace ctiso\Excel;
|
||||
|
||||
class TableCell
|
||||
{
|
||||
public $style = false;
|
||||
|
|
@ -38,7 +40,7 @@ class TableRow
|
|||
/**
|
||||
* Таблица
|
||||
*/
|
||||
class Excel_Table
|
||||
class Table
|
||||
{
|
||||
static $index;
|
||||
private $name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue