/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); 73 * @param float $Value 76 static public function ToCurrency($Value) { argument 77 $Go = floor($Value / 1000000000); [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, $SerieName);
|
H A D | pData.php | 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)) {
|
H A D | PieChart.php | 66 foreach($Data as $Key => $Value) { 103 foreach($Data as $Key => $Value) { 187 foreach($iValues as $Key => $Value) { 212 foreach($TopPlots as $Key => $Value) { 219 foreach($PolyPlots as $Key => $Value) { 241 foreach($TopPlots as $Key => $Value) { 264 $TAngle = $Angle + ($Value * $SpliceRatio / 2); 396 foreach($iValues as $Key => $Value) { 421 foreach($PolyPlots as $Key => $Value) { 510 foreach($iValues as $Key => $Value) { [all …]
|
H A D | pChart.php | 381 $Value = round($Value * pow(10, $Decimals)) / pow(10, $Decimals); 383 $Value, 712 $Value = round($Value * pow(10, $Decimals)) / pow(10, $Decimals); 714 $Value, 728 $Value, 787 $Value, 1071 $Value, 1112 $Value, 3014 $DataDescription->description[$Value] = $Value; 3022 $DataDescription->description[$Value] = $Value; [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'),
|
/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
|
H A D | AggregationResult.php | 22 protected $aggregateFieldsType = Value::class; 26 * @param Value[] 33 * @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
|