| /plugin/projects/pchart/pchart/ |
| D | pdata.php | 78 foreach($Values as $Value) { 79 $Value = trim($Value); 80 $this->SetSerieName($Value,"Serie".$ID); 87 $Value = trim($Values[$column]); 88 $this->SetSerieName($Value,"Serie".$Value); 96 foreach($Values as $Value) { 97 $Value = trim($Value); 98 $this->AddPoint($Value,"Serie".$ID); 106 $Value = trim($Values[$column]); 107 $this->AddPoint($Value,"Serie".$column,$SerieName); [all …]
|
| D | pchart.php | 411 $Value = $Data[$Key][$ColName]; 413 if ( is_numeric($Value) ) 415 if ( $this->VMax < $Value) { $this->VMax = $Value; } 416 if ( $this->VMin > $Value) { $this->VMin = $Value; } 433 $Value = $Data[$Key][$ColName]; 434 if ( is_numeric($Value) ) 435 $Sum += $Value; 543 $Value = $this->VMin + ($i-1) * (( $this->VMax - $this->VMin ) / $Divisions); 544 $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals); 546 $Value = $Value.$DataDescription["Unit"]["Y"]; [all …]
|
| /plugin/charter/lib/pchart/ |
| D | pData.class.php | 84 foreach($Values as $key => $Value) 85 { $this->SetSerieName($Value,"Serie".$ID); $ID++; } 91 foreach($DataColumns as $key => $Value) 92 $this->SetSerieName($Values[$Value],"Serie".$Value); 101 foreach($Values as $key => $Value) 102 { $this->AddPoint(intval($Value),"Serie".$ID); $ID++; } 110 foreach($DataColumns as $key => $Value) 111 $this->AddPoint($Values[$Value],"Serie".$Value,$SerieName); 120 function AddPoint($Value,$Serie="Serie1",$Description="") argument 122 if (is_array($Value) && count($Value) == 1) [all …]
|
| D | pChart.class.php | 411 $Value = $Data[$Key][$ColName]; 413 if ( is_numeric($Value) ) 415 if ( $this->VMax < $Value) { $this->VMax = $Value; } 416 if ( $this->VMin > $Value) { $this->VMin = $Value; } 433 $Value = $Data[$Key][$ColName]; 434 if ( is_numeric($Value) ) 435 $Sum += $Value; 543 $Value = $this->VMin + ($i-1) * (( $this->VMax - $this->VMin ) / $Divisions); 544 $Value = round($Value * pow(10,$Decimals)) / pow(10,$Decimals); 546 $Value = $Value.$DataDescription["Unit"]["Y"]; [all …]
|
| /plugin/statdisplay/pchart/ |
| 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 static public function ToCurrency($Value) { argument [all …]
|
| 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 );
|
| D | PieChart.php | 67 foreach ( $Data as $Key => $Value ) { 68 $Value2 = $Value [$DataDescription->getPosition()]; 100 foreach ( $Data as $Key => $Value ) { 101 $Value2 = $Value [$DataDescription->getPosition()]; 179 foreach ( $iValues as $Key => $Value ) { 184 …$this->processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, 0, … 187 for($iAngle = $Angle; $iAngle <= $Angle + $Value * $SpliceRatio; $iAngle = $iAngle + .5) { 204 foreach ( $TopPlots as $Key => $Value ) { 211 foreach ( $PolyPlots as $Key => $Value ) { 227 foreach ( $TopPlots as $Key => $Value ) { [all …]
|
| 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 )) {
|
| D | pChart.php | 375 $Value = $this->VMin + ($i - 1) * (($this->VMax - $this->VMin) / $Divisions); 376 $Value = round ( $Value * pow ( 10, $Decimals ) ) / pow ( 10, $Decimals ); 377 $Value = $this->convertValueForDisplay($Value, 381 $Position = imageftbbox ( $this->FontSize, 0, $this->FontName, $Value ); 390 $Value, 402 $Value, 448 $Value = $Values[$Data->getDataDescription()->getPosition()]; 449 $Value = $this->convertValueForDisplay($Value, 453 $Position = imageftbbox ( $this->FontSize, $Angle, $this->FontName, $Value ); 465 $Value, [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | css.font-size.inc.php | 9 $this->_defaultValue = Value::fromData(BASE_FONT_SIZE_PT, UNIT_PT); 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 [all …]
|
| 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);
|
| 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'),
|
| 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/ |
| D | FieldTransform.php | 28 protected $incrementType = Value::class; 30 protected $maximumType = Value::class; 32 protected $minimumType = Value::class; 70 * @param Value 72 public function setIncrement(Value $increment) 77 * @return Value 84 * @param Value 86 public function setMaximum(Value $maximum) 91 * @return Value 98 * @param Value [all …]
|
| D | FieldFilter.php | 28 protected $valueType = Value::class; 60 * @param Value 62 public function setValue(Value $value) 67 * @return Value
|
| /plugin/struct/meta/ |
| H A D | NestedResult.php | 21 /** @var Value[][] */ 25 * @param Value[][] $result the original search result 99 * @param Value[] $row current result row to work on 112 if (!$valObj instanceof Value) return; // no more values to nest, usually shouldn't happen 121 $newValue = new Value($valObj->getColumn(), $value); 127 $newValue = new Value($valObj->getColumn(), ''); // add empty node 142 * @param Value $value 146 protected function getNodeForValue(Value $value, $parentPath, $depth) 159 * @param Value $value 163 protected function getIndexNode(Value $value, $index) [all …]
|
| H A D | NestedValue.php | 14 /** @var Value */ 20 /** @var Value[][] */ 33 * @param Value|null $value The value to store, null for root node 36 public function __construct(?Value $value, $parentPath = '', $depth = 0) 65 * @return Value|null the value stored in this node, null for root node 111 * @param Value[] $row 125 * @return Value[][] 139 if (!$this->value instanceof Value) return ''; // root node
|
| H A D | SearchResult.php | 12 /** @var Value[][] */ 46 $value = new Value($col, $val); 76 * @return Value[][] 125 * @param Value $value 128 protected function isEmptyValue(Value $value)
|
| H A D | AggregationList.php | 43 …$children = $node->getChildren(!$self instanceof Value && $this->data['index']); // sort only for … 47 if ($self instanceof Value) { 52 if ($self instanceof Value) { 78 if ($self instanceof Value) { 86 * @param Value[] $resultrow 118 * @param Value $value 147 * @param Value $value
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Script/ |
| 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/Datastore/ |
| D | GqlQueryParameter.php | 26 protected $valueType = Value::class; 44 * @param Value 46 public function setValue(Value $value) 51 * @return Value
|
| D | PropertyFilter.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/CloudSearch/ |
| D | ValueFilter.php | 26 protected $valueType = Value::class; 44 * @param Value 46 public function setValue(Value $value) 51 * @return Value
|
| 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/ShoppingContent/ |
| D | RateGroup.php | 35 protected $singleValueType = Value::class; 97 * @param Value 99 public function setSingleValue(Value $singleValue) 104 * @return Value
|