ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
AdvancedValueBinder.php
Go to the documentation of this file.
1 <?php
30 if (!defined('PHPEXCEL_ROOT')) {
34  define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../');
35  require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php');
36 }
37 
38 
47 {
55  public function bindValue(PHPExcel_Cell $cell, $value = null)
56  {
57  // sanitize UTF-8 strings
58  if (is_string($value)) {
59  $value = PHPExcel_Shared_String::SanitizeUTF8($value);
60  }
61 
62  // Find out data type
63  $dataType = parent::dataTypeForValue($value);
64 
65  // Style logic - strings
66  if ($dataType === PHPExcel_Cell_DataType::TYPE_STRING && !$value instanceof PHPExcel_RichText) {
67  // Test for booleans using locale-setting
68  if ($value == PHPExcel_Calculation::getTRUE()) {
70  return true;
71  } elseif($value == PHPExcel_Calculation::getFALSE()) {
73  return true;
74  }
75 
76  // Check for number in scientific format
77  if (preg_match('/^'.PHPExcel_Calculation::CALCULATION_REGEXP_NUMBER.'$/', $value)) {
79  return true;
80  }
81 
82  // Check for percentage
83  if (preg_match('/^\-?[0-9]*\.?[0-9]*\s?\%$/', $value)) {
84  // Convert value to number
85  $cell->setValueExplicit( (float)str_replace('%', '', $value) / 100, PHPExcel_Cell_DataType::TYPE_NUMERIC);
86  // Set style
87  $cell->getParent()->getStyle( $cell->getCoordinate() )->getNumberFormat()->setFormatCode( PHPExcel_Style_NumberFormat::FORMAT_PERCENTAGE );
88  return true;
89  }
90 
91  // Check for time without seconds e.g. '9:45', '09:45'
92  if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d$/', $value)) {
93  list($h, $m) = explode(':', $value);
94  $days = $h / 24 + $m / 1440;
95  // Convert value to number
97  // Set style
98  $cell->getParent()->getStyle( $cell->getCoordinate() )->getNumberFormat()->setFormatCode( PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME3 );
99  return true;
100  }
101 
102  // Check for time with seconds '9:45:59', '09:45:59'
103  if (preg_match('/^(\d|[0-1]\d|2[0-3]):[0-5]\d:[0-5]\d$/', $value)) {
104  list($h, $m, $s) = explode(':', $value);
105  $days = $h / 24 + $m / 1440 + $s / 86400;
106  // Convert value to number
108  // Set style
109  $cell->getParent()->getStyle( $cell->getCoordinate() )->getNumberFormat()->setFormatCode( PHPExcel_Style_NumberFormat::FORMAT_DATE_TIME4 );
110  return true;
111  }
112 
113  // Check for datetime, e.g. '2008-12-31', '2008-12-31 15:59', '2008-12-31 15:59:10'
114  if (($d = PHPExcel_Shared_Date::stringToExcel($value)) !== false) {
115  // Convert value to number
117  // Determine style. Either there is a time part or not. Look for ':'
118  if (strpos($value, ':') !== false) {
119  $formatCode = 'yyyy-mm-dd h:mm';
120  } else {
121  $formatCode = 'yyyy-mm-dd';
122  }
123  $cell->getParent()->getStyle( $cell->getCoordinate() )->getNumberFormat()->setFormatCode($formatCode);
124  return true;
125  }
126 
127  // Check for newline character "\n"
128  if (strpos($value, "\n") !== false) {
129  $value = PHPExcel_Shared_String::SanitizeUTF8($value);
131  // Set style
132  $cell->getParent()->getStyle( $cell->getCoordinate() )->getAlignment()->setWrapText(true);
133  return true;
134  }
135  }
136 
137  // Not bound yet? Use parent...
138  return parent::bindValue($cell, $value);
139  }
140 }