/plugin/projects/pchart/pchart/ |
H A D | pdata.php | 78 foreach($Values as $Value) { 79 $Value = trim($Value); 87 $Value = trim($Values[$column]); 88 $this->SetSerieName($Value,"Serie".$Value); 96 foreach($Values as $Value) { 97 $Value = trim($Value); 106 $Value = trim($Values[$column]); 115 if (is_array($Value) && count($Value) == 1) 116 $Value = $Value[0]; 122 if ( count($Value) == 1 ) [all …]
|
H A D | pchart.php | 548 $Value = $this->ToTime($Value); 550 $Value = $this->ToDate($Value); 552 $Value = $this->ToMetric($Value); 598 $Value = $this->ToTime($Value); 600 $Value = $this->ToDate($Value); 741 $Value = $this->ToTime($Value); 743 $Value = $this->ToDate($Value); 745 $Value = $this->ToMetric($Value); 850 $Value = $this->ToTime($Value); 852 $Value = $this->ToDate($Value); [all …]
|
/plugin/statistics/inc/pchart/ |
H A D | ConversionHelpers.php | 31 static public function ToTime($Value) { argument 32 $Hour = floor($Value / 3600); 33 $Minute = floor(($Value - $Hour * 3600) / 60); 34 $Second = floor($Value - $Hour * 3600 - $Minute * 60); 52 static public function ToMetric($Value) { argument 53 $Go = floor($Value / 1000000000); 54 $Mo = floor(($Value - $Go * 1000000000) / 1000000); 55 $Ko = floor(($Value - $Go * 1000000000 - $Mo * 1000000) / 1000); 56 $o = floor($Value - $Go * 1000000000 - $Mo * 1000000 - $Ko * 1000); 73 * @param float $Value 76 ToCurrency($Value) global() argument [all...] |
H A D | CSVImporter.php | 72 foreach($Values as $key => $Value) { 73 $data->SetSeriesName($Value, "Serie".$ID); 77 foreach($DataColumns as $key => $Value) 78 $data->SetSeriesName($Values [$Value], "Serie".$Value); 92 foreach($Values as $key => $Value) { 93 $data->AddPoint(intval($Value), "Serie".$ID); 101 foreach($DataColumns as $key => $Value) 102 $data->AddPoint($Values [$Value], "Serie".$Value, [all...] |
H A D | PieChart.php | 66 foreach($Data as $Key => $Value) { 67 $Value2 = $Value [$DataDescription->getPosition()]; 103 foreach($Data as $Key => $Value) { 104 $Value2 = $Value [$DataDescription->getPosition()]; 187 foreach($iValues as $Key => $Value) { 192 $this->processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, 0, $Decimals, $Radius, $XPos, $YPos, $shadowProperties); 195 for($iAngle = $Angle; $iAngle <= $Angle + $Value * $SpliceRatio; $iAngle = $iAngle + .5) { 212 foreach($TopPlots as $Key => $Value) { 219 foreach($PolyPlots as $Key => $Value) { 241 foreach($TopPlots as $Key => $Value) { 261 processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, $SpliceDistance, $Decimals, $Radius, $XPos, $YPos, ShadowProperties $shadowProperties) global() argument 610 processPieSlices(& $Angle, $SpliceRatio, $Value, $Radius, $XPos, $YPos, $XOffset, $YOffset, Color $color, array& $plotArray, ShadowProperties $shadowProperties) global() argument [all...] |
H A D | pData.php | 65 * @param $Value If this is an associative array the key values 70 public function addPoints(array $Value, $Serie = "Series1", $Description = "") { argument 78 foreach($Value as $Val) { 94 foreach($this->dataDescription->values as $Value) 95 if($Value == $SerieName) { 120 foreach($this->dataDescription->values as $key => $Value) { 121 if($Value == $SerieName) 246 $Value = $this->Data[$Key] [$colName]; 248 $yIn [$index] = $Value; 249 if(!is_numeric($Value)) { [all...] |
H A D | pChart.php | 380 $Value = $this->VMin + ($i - 1) * (($this->VMax - $this->VMin) / $Divisions); 381 $Value = round($Value * pow(10, $Decimals)) / pow(10, $Decimals); 382 $Value = $this->convertValueForDisplay( 383 $Value, 388 $Position = imageftbbox($this->FontSize, 0, $this->FontName, $Value); 398 $Value, 412 $Value, 464 $Value = $Values[$Data->getDataDescription()->getPosition()]; 465 $Value 1089 drawTitle($XPos, $YPos, $Value, Color $color, $XPos2 = 1, $YPos2 = 1, ShadowProperties $shadowProperties = null) global() argument 1202 drawTreshold($Value, Color $color, $ShowLabel = FALSE, $ShowOnRight = FALSE, $TickWidth = 4, $FreeText = NULL) global() argument 3124 addToImageMap($X1, $Y1, $X2, $Y2, $SerieName, $Value, $CallerFunction) global() argument 3190 ToDate($Value) global() argument 3197 isRealInt($Value) global() argument [all...] |
/plugin/charter/lib/pchart/ |
H A D | pData.class.php | 84 foreach($Values as $key => $Value) 92 $this->SetSerieName($Values[$Value],"Serie".$Value); 101 foreach($Values as $key => $Value) 111 $this->AddPoint($Values[$Value],"Serie".$Value,$SerieName); 122 if (is_array($Value) && count($Value) == 1) 123 $Value = $Value[0]; 129 if ( count($Value) == 1 ) 131 $this->Data[$ID][$Serie] = $Value; 139 foreach($Value as $key => $Val) 172 foreach($this->Data[0] as $Key => $Value) [all …]
|
H A D | pChart.class.php | 548 $Value = $this->ToTime($Value); 550 $Value = $this->ToDate($Value); 552 $Value = $this->ToMetric($Value); 598 $Value = $this->ToTime($Value); 600 $Value = $this->ToDate($Value); 741 $Value = $this->ToTime($Value); 743 $Value = $this->ToDate($Value); 745 $Value = $this->ToMetric($Value); 850 $Value = $this->ToTime($Value); 852 $Value = $this->ToDate($Value); [all …]
|
/plugin/statdisplay/pchart/ |
H A D | ConversionHelpers.php | 31 static public function ToTime($Value) { argument 32 $Hour = floor ( $Value / 3600 ); 33 $Minute = floor ( ($Value - $Hour * 3600) / 60 ); 34 $Second = floor ( $Value - $Hour * 3600 - $Minute * 60 ); 52 static public function ToMetric($Value) { argument 53 $Go = floor ( $Value / 1000000000 ); 54 $Mo = floor ( ($Value - $Go * 1000000000) / 1000000 ); 55 $Ko = floor ( ($Value - $Go * 1000000000 - $Mo * 1000000) / 1000 ); 73 static public function ToCurrency($Value) { argument 74 $Go = floor ( $Value / 1000000000 ); [all …]
|
H A D | CSVImporter.php | 74 foreach ( $Values as $key => $Value ) { 75 $data->SetSeriesName ( $Value, "Serie" . $ID ); 79 foreach ( $DataColumns as $key => $Value ) 80 $data->SetSeriesName ( $Values [$Value], "Serie" . $Value ); 94 foreach ( $Values as $key => $Value ) { 95 $data->AddPoint ( intval ( $Value ), "Serie" . $ID ); 103 foreach ( $DataColumns as $key => $Value ) 104 $data->AddPoint ( $Values [$Value], "Serie" . $Value, $SerieName );
|
H A D | PieChart.php | 67 foreach ( $Data as $Key => $Value ) { 100 foreach ( $Data as $Key => $Value ) { 179 foreach ( $iValues as $Key => $Value ) { 204 foreach ( $TopPlots as $Key => $Value ) { 211 foreach ( $PolyPlots as $Key => $Value ) { 227 foreach ( $TopPlots as $Key => $Value ) { 248 $TAngle = $Angle + ($Value * $SpliceRatio / 2); 372 foreach ( $iValues as $Key => $Value ) { 397 foreach ( $PolyPlots as $Key => $Value ) { 483 foreach ( $iValues as $Key => $Value ) { [all …]
|
H A D | pData.php | 69 public function addPoints(array $Value, $Serie = "Series1", $Description = "") { argument 77 foreach ( $Value as $Val ) { 94 foreach ( $this->dataDescription->values as $Value ) 95 if ($Value == $SerieName) { 120 foreach ( $this->dataDescription->values as $key => $Value ) { 121 if ($Value == $SerieName) 242 $Value = $this->Data[$Key] [$colName]; 244 $yIn [$index] = $Value; 245 if (! is_numeric ( $Value )) {
|
H A D | pChart.php | 377 $Value = $this->convertValueForDisplay($Value, 390 $Value, 402 $Value, 449 $Value = $this->convertValueForDisplay($Value, 677 $Value = $this->convertValueForDisplay($Value, 689 $Value, 742 $Value = $this->convertValueForDisplay($Value, 1040 $Value, 2804 $DataDescription->description[$Value] = $Value; 2812 $DataDescription->description[$Value] = $Value; [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | css.font-size.inc.php | 25 return Value::fromData(BASE_FONT_SIZE_PT*3/5, UNIT_PT); 27 return Value::fromData(BASE_FONT_SIZE_PT*3/4, UNIT_PT); 29 return Value::fromData(BASE_FONT_SIZE_PT*8/9, UNIT_PT); 31 return Value::fromData(BASE_FONT_SIZE_PT, UNIT_PT); 33 return Value::fromData(BASE_FONT_SIZE_PT*6/5, UNIT_PT); 35 return Value::fromData(BASE_FONT_SIZE_PT*3/2, UNIT_PT); 37 return Value::fromData(BASE_FONT_SIZE_PT*2/1, UNIT_PT); 42 return Value::fromData(1.2, UNIT_EM); 44 return Value::fromData(0.83, UNIT_EM); // 0.83 = 1/1.2 48 return Value::fromData($matches[1]/100, UNIT_EM); [all …]
|
H A D | css.border.width.inc.php | 12 $this->_defaultValue = new BorderWidth(Value::fromData(0, UNIT_PT), 13 Value::fromData(0, UNIT_PT), 14 Value::fromData(0, UNIT_PT), 15 Value::fromData(0, UNIT_PT)); 54 return Value::fromString('1px'); 56 return Value::fromString('3px'); 58 return Value::fromString('5px'); 60 return Value::fromString($value);
|
H A D | css.pseudo.table.border.inc.php | 12 …$this->_defaultValue = BorderPDF::create(array('top' => array('width' => Value::fromString('2px… 15 … 'right' => array('width' => Value::fromString('2px'), 18 … 'bottom' => array('width' => Value::fromString('2px'), 21 … 'left' => array('width' => Value::fromString('2px'),
|
H A D | value.generic.length.php | 5 class Value extends CSSValue { class 19 $value =& new Value; 30 function Value() { function in Value 37 $value =& new Value; 49 $value =& new Value;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/ |
H A D | FieldTransform.php | 28 protected $incrementType = Value::class; 30 protected $maximumType = Value::class; 32 protected $minimumType = Value::class; 70 * @param Value 77 * @return Value 84 * @param Value 86 public function setMaximum(Value $maximum) 91 * @return Value 98 * @param Value 100 public function setMinimum(Value $minimum) [all …]
|
H A D | FieldFilter.php | 28 protected $valueType = Value::class; 60 * @param Value 62 public function setValue(Value $value) 67 * @return Value
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Script/ |
H A D | ScriptExecutionResult.php | 22 protected $returnValueType = Value::class; 26 * @param Value 28 public function setReturnValue(Value $returnValue) 33 * @return Value
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/ |
H A D | ValueFilter.php | 26 protected $valueType = Value::class; 44 * @param Value 46 public function setValue(Value $value) 51 * @return Value
|
H A D | FacetBucket.php | 30 protected $valueType = Value::class; 62 * @param Value 64 public function setValue(Value $value) 69 * @return Value
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastore/ |
H A D | GqlQueryParameter.php | 26 protected $valueType = Value::class; 44 * @param Value 46 public function setValue(Value $value) 51 * @return Value
|
H A D | PropertyFilter.php | 28 protected $valueType = Value::class; 60 * @param Value 62 public function setValue(Value $value) 67 * @return Value
|