Ejemplo n.º 1
0
 /**
  * Get hash code
  *
  * @return string Hash code
  */
 public function getHashCode()
 {
     $hashConditionals = '';
     foreach ($this->conditionalStyles as $conditional) {
         $hashConditionals .= $conditional->getHashCode();
     }
     return md5($this->fill->getHashCode() . $this->font->getHashCode() . $this->borders->getHashCode() . $this->alignment->getHashCode() . $this->numberFormat->getHashCode() . $hashConditionals . $this->protection->getHashCode() . ($this->quotePrefix ? 't' : 'f') . __CLASS__);
 }
Ejemplo n.º 2
0
 /**
  * Get hash code
  *
  * @return string	Hash code
  */
 public function getHashCode()
 {
     $hashConditionals = '';
     foreach ($this->_conditionalStyles as $conditional) {
         $hashConditionals .= $conditional->getHashCode();
     }
     return md5($this->_fill->getHashCode() . $this->_font->getHashCode() . $this->_borders->getHashCode() . $this->_alignment->getHashCode() . $this->_numberFormat->getHashCode() . $hashConditionals . $this->_protection->getHashCode() . __CLASS__);
 }
Ejemplo n.º 3
0
 /**
  * Create a new PHPExcel_Style
  *
  * @param boolean $isSupervisor
  */
 public function __construct($isSupervisor = false)
 {
     // Supervisor?
     $this->_isSupervisor = $isSupervisor;
     // Initialise values
     $this->_conditionalStyles = array();
     $this->_font = new PHPExcel_Style_Font($isSupervisor);
     $this->_fill = new PHPExcel_Style_Fill($isSupervisor);
     $this->_borders = new PHPExcel_Style_Borders($isSupervisor);
     $this->_alignment = new PHPExcel_Style_Alignment($isSupervisor);
     $this->_numberFormat = new PHPExcel_Style_NumberFormat($isSupervisor);
     $this->_protection = new PHPExcel_Style_Protection($isSupervisor);
     // bind parent if we are a supervisor
     if ($isSupervisor) {
         $this->_font->bindParent($this);
         $this->_fill->bindParent($this);
         $this->_borders->bindParent($this);
         $this->_alignment->bindParent($this);
         $this->_numberFormat->bindParent($this);
         $this->_protection->bindParent($this);
     }
 }
Ejemplo n.º 4
0
 /**
  * Create CSS style (PHPExcel_Style_Alignment)
  *
  * @param	PHPExcel_Style_Alignment		$pStyle			PHPExcel_Style_Alignment
  * @return	array
  */
 private function _createCSSStyleAlignment(PHPExcel_Style_Alignment $pStyle)
 {
     // Construct CSS
     $css = array();
     // Create CSS
     $css['vertical-align'] = $this->_mapVAlign($pStyle->getVertical());
     if ($textAlign = $this->_mapHAlign($pStyle->getHorizontal())) {
         $css['text-align'] = $textAlign;
         if (in_array($textAlign, array('left', 'right'))) {
             $css['padding-' . $textAlign] = (string) ((int) $pStyle->getIndent() * 9) . 'px';
         }
     }
     // Return
     return $css;
 }
Ejemplo n.º 5
0
 /**
  * Get Alignment
  *
  * @return PHPExcel_Style_Alignment
  */
 public function getAlignment()
 {
     if (isset($this->_alignment)) {
         return $this->_alignment;
     }
     $property = new PHPExcel_Style_Alignment();
     $property->propertyPrepareBind($this, "_alignment");
     return $property;
 }
Ejemplo n.º 6
0
 /**
  * Create CSS style (PHPExcel_Style_Alignment)
  *
  * @param	PHPExcel_Style_Alignment 		$pStyle			PHPExcel_Style_Alignment
  * @return	array
  */
 private function _createCSSStyleAlignment(PHPExcel_Style_Alignment $pStyle)
 {
     // Construct CSS
     $css = array();
     // Create CSS
     $css['vertical-align'] = $this->_mapVAlign($pStyle->getVertical());
     if ($textAlign = $this->_mapHAlign($pStyle->getHorizontal())) {
         $css['text-align'] = $textAlign;
     }
     // Return
     return $css;
 }
Ejemplo n.º 7
0
 /**
  * Create CSS style (PHPExcel_Style_Alignment)
  * 
  * @param	PHPExcel_Style_Alignment 		$pStyle			PHPExcel_Style_Alignment
  * @return	string
  */
 private function _createCSSStyleAlignment(PHPExcel_Style_Alignment $pStyle)
 {
     // Construct HTML
     $html = '';
     // Create CSS
     $html .= '        vertical-align: ' . $this->_mapVAlign($pStyle->getVertical()) . ';' . "\r\n";
     $html .= '        text-align: ' . $this->_mapHAlign($pStyle->getHorizontal()) . ';' . "\r\n";
     // Return
     return $html;
 }
Ejemplo n.º 8
0
 /**
  * Create CSS style (PHPExcel_Style_Alignment)
  *
  * @param	PHPExcel_Style_Alignment 		$pStyle			PHPExcel_Style_Alignment
  * @return	string
  */
 private function _createCSSStyleAlignment(PHPExcel_Style_Alignment $pStyle)
 {
     // Construct CSS
     $css = '';
     // Create CSS
     $css .= 'vertical-align: ' . $this->_mapVAlign($pStyle->getVertical()) . '; ';
     $css .= 'text-align: ' . $this->_mapHAlign($pStyle->getHorizontal()) . '; ';
     // Return
     return $css;
 }