From 155cf6aeea9ba7ecbc39face6442d3ce1b03ad8e Mon Sep 17 00:00:00 2001
From: Nils Schwabe
Date: Wed, 4 Jun 2014 14:27:03 +0200
Subject: Add webinterface with functionallity
---
management-interface/lib/api/classMatrix.html | 259 ++++++++++++++++++++++++++
1 file changed, 259 insertions(+)
create mode 100644 management-interface/lib/api/classMatrix.html
(limited to 'management-interface/lib/api/classMatrix.html')
diff --git a/management-interface/lib/api/classMatrix.html b/management-interface/lib/api/classMatrix.html
new file mode 100644
index 0000000..9959d17
--- /dev/null
+++ b/management-interface/lib/api/classMatrix.html
@@ -0,0 +1,259 @@
+
+
+
+
+
+
+
Generic array utilities.
+ More...
+
+
+
+
+
+

+
+
+
+ |
+| | pick (array $var, $col) |
+| |
+| | transpose (array &$var) |
+| |
+| | sort (array &$var, $col, $order=SORT_ASC) |
+| |
+| | changekey (array &$var, $old, $new) |
+| |
+| | calendar ($date='now', $first=0) |
+| |
+
+
+
Generic array utilities.
+
+
+
+
+
+
+ | Matrix::calendar |
+ ( |
+ |
+ $date = 'now', |
+
+
+ |
+ |
+ |
+ $first = 0 |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Return month calendar of specified date, with optional setting for first day of week (0 for Sunday)
+
- Returns
- array
+
- Parameters
-
+
+ | $date | string |
+ | $first | int |
+
+
+
+
+
+
+
+
+
+
+
+ | Matrix::changekey |
+ ( |
+ array & |
+ $var, |
+
+
+ |
+ |
+ |
+ $old, |
+
+
+ |
+ |
+ |
+ $new |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Change the key of a two-dimensional array element
+
- Returns
- NULL
+
- Parameters
-
+
+ | $var | array |
+ | $old | string |
+ | $new | string |
+
+
+
+
+
+
+
+
+
+
+
+ | Matrix::pick |
+ ( |
+ array |
+ $var, |
+
+
+ |
+ |
+ |
+ $col |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Retrieve values from a specified column of a multi-dimensional array variable
+
- Returns
- array
+
- Parameters
-
+
+ | $var | array |
+ | $col | mixed |
+
+
+
+
+
+
+
+
+
+
+
+ | Matrix::sort |
+ ( |
+ array & |
+ $var, |
+
+
+ |
+ |
+ |
+ $col, |
+
+
+ |
+ |
+ |
+ $order = SORT_ASC |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Sort a multi-dimensional array variable on a specified column
+
- Returns
- bool
+
- Parameters
-
+
+ | $var | array |
+ | $col | mixed |
+ | $order | int |
+
+
+
+
+
+
+
+
+
+
+
+ | Matrix::transpose |
+ ( |
+ array & |
+ $var | ) |
+ |
+
+
+
+
Rotate a two-dimensional array variable
+
- Returns
- NULL
+
- Parameters
-
+
+
+
+
+
+
+
The documentation for this class was generated from the following file:
+
--
cgit v1.2.3-55-g7522