Example #1
0
 /**
  * Create a new PHPExcel_Style_Color
  *
  * @param	string	$pARGB			ARGB value for the colour
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($pARGB = PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor = FALSE, $isConditional = FALSE)
 {
     //	Supervisor?
     parent::__construct($isSupervisor);
     //	Initialise values
     if (!$isConditional) {
         $this->_argb = $pARGB;
     }
 }
Example #2
0
 /**
  * Create a new PHPExcel_Style_Protection
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if (!$isConditional) {
         $this->_locked = self::PROTECTION_INHERIT;
         $this->_hidden = self::PROTECTION_INHERIT;
     }
 }
Example #3
0
 /**
  * Create a new PHPExcel_Style_Border
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     $this->_color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_color->bindParent($this, '_color');
     }
 }
Example #4
0
 /**
  * Create a new PHPExcel_Style_Alignment
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_horizontal = NULL;
         $this->_vertical = NULL;
         $this->_textRotation = NULL;
     }
 }
 /**
  * Create a new PHPExcel_Style_NumberFormat
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_formatCode = NULL;
     }
 }
Example #6
0
 /**
  * Create a new PHPExcel_Style_Font
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->_name = NULL;
         $this->_size = NULL;
         $this->_bold = NULL;
         $this->_italic = NULL;
         $this->_superScript = NULL;
         $this->_subScript = NULL;
         $this->_underline = NULL;
         $this->_strikethrough = NULL;
         $this->_color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     } else {
         $this->_color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
     }
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_color->bindParent($this, '_color');
     }
 }
Example #7
0
 /**
  * Create a new PHPExcel_Style_Fill
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->_fillType = NULL;
     }
     $this->_startColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE, $isSupervisor, $isConditional);
     $this->_endColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_startColor->bindParent($this, '_startColor');
         $this->_endColor->bindParent($this, '_endColor');
     }
 }
Example #8
0
 /**
  * Create a new PHPExcel_Style_Borders
  *
  * @param    boolean    $isSupervisor    Flag indicating if this is a supervisor or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean    $isConditional    Flag indicating if this is a conditional style or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     $this->left = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->right = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->top = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->bottom = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->diagonal = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->diagonalDirection = PHPExcel_Style_Borders::DIAGONAL_NONE;
     // Specially for supervisor
     if ($isSupervisor) {
         // Initialize pseudo-borders
         $this->allBorders = new PHPExcel_Style_Border(true);
         $this->outline = new PHPExcel_Style_Border(true);
         $this->inside = new PHPExcel_Style_Border(true);
         $this->vertical = new PHPExcel_Style_Border(true);
         $this->horizontal = new PHPExcel_Style_Border(true);
         // bind parent if we are a supervisor
         $this->left->bindParent($this, 'left');
         $this->right->bindParent($this, 'right');
         $this->top->bindParent($this, 'top');
         $this->bottom->bindParent($this, 'bottom');
         $this->diagonal->bindParent($this, 'diagonal');
         $this->allBorders->bindParent($this, 'allBorders');
         $this->outline->bindParent($this, 'outline');
         $this->inside->bindParent($this, 'inside');
         $this->vertical->bindParent($this, 'vertical');
         $this->horizontal->bindParent($this, 'horizontal');
     }
 }
Example #9
0
 /**
  * Create a new PHPExcel_Style_Borders
  *
  * @param	boolean	$isSupervisor	Flag indicating if this is a supervisor or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  * @param	boolean	$isConditional	Flag indicating if this is a conditional style or not
  *									Leave this value at default unless you understand exactly what
  *										its ramifications are
  */
 public function __construct($isSupervisor = FALSE, $isConditional = FALSE)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     $this->_left = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_right = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_top = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_bottom = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_diagonal = new PHPExcel_Style_Border($isSupervisor, $isConditional);
     $this->_diagonalDirection = PHPExcel_Style_Borders::DIAGONAL_NONE;
     // Specially for supervisor
     if ($isSupervisor) {
         // Initialize pseudo-borders
         $this->_allBorders = new PHPExcel_Style_Border(TRUE);
         $this->_outline = new PHPExcel_Style_Border(TRUE);
         $this->_inside = new PHPExcel_Style_Border(TRUE);
         $this->_vertical = new PHPExcel_Style_Border(TRUE);
         $this->_horizontal = new PHPExcel_Style_Border(TRUE);
         // bind parent if we are a supervisor
         $this->_left->bindParent($this, '_left');
         $this->_right->bindParent($this, '_right');
         $this->_top->bindParent($this, '_top');
         $this->_bottom->bindParent($this, '_bottom');
         $this->_diagonal->bindParent($this, '_diagonal');
         $this->_allBorders->bindParent($this, '_allBorders');
         $this->_outline->bindParent($this, '_outline');
         $this->_inside->bindParent($this, '_inside');
         $this->_vertical->bindParent($this, '_vertical');
         $this->_horizontal->bindParent($this, '_horizontal');
     }
 }
Example #10
0
 /**
  * Create a new PHPExcel_Style_Alignment
  *
  * @param    boolean $isSupervisor        Flag indicating if this is a supervisor or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean $isConditional       Flag indicating if this is a conditional style or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_horizontal = null;
         $this->_vertical = null;
         $this->_textRotation = null;
     }
 }
Example #11
0
 /**
  * Create a new PHPExcel_Style_Font
  *
  * @param    boolean    $isSupervisor    Flag indicating if this is a supervisor or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean    $isConditional    Flag indicating if this is a conditional style or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->name = null;
         $this->size = null;
         $this->bold = null;
         $this->italic = null;
         $this->superScript = null;
         $this->subScript = null;
         $this->underline = null;
         $this->strikethrough = null;
         $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     } else {
         $this->color = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor);
     }
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->color->bindParent($this, 'color');
     }
 }
 /**
  * Create a new PHPExcel_Style_NumberFormat
  *
  * @param    boolean $isSupervisor        Flag indicating if this is a supervisor or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean $isConditional       Flag indicating if this is a conditional style or not
  *                                        Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     if ($isConditional) {
         $this->_formatCode = null;
     }
 }
Example #13
0
 /**
  * Create a new PHPExcel_Style_Fill
  *
  * @param    boolean    $isSupervisor    Flag indicating if this is a supervisor or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  * @param    boolean    $isConditional    Flag indicating if this is a conditional style or not
  *                                    Leave this value at default unless you understand exactly what
  *                                        its ramifications are
  */
 public function __construct($isSupervisor = false, $isConditional = false)
 {
     // Supervisor?
     parent::__construct($isSupervisor);
     // Initialise values
     if ($isConditional) {
         $this->fillType = null;
     }
     $this->startColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE, $isSupervisor, $isConditional);
     $this->endColor = new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK, $isSupervisor, $isConditional);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->startColor->bindParent($this, 'startColor');
         $this->endColor->bindParent($this, 'endColor');
     }
 }