|
@@ 1784-1797 (lines=14) @@
|
| 1781 |
|
return $services;
|
| 1782 |
|
}
|
| 1783 |
|
|
| 1784 |
|
foreach ($return as $index => $service) {
|
| 1785 |
|
$services[$index]['id'] = $service['id'];
|
| 1786 |
|
$services[$index]['name'] = $service['name'];
|
| 1787 |
|
$services[$index]['description'] = $service['description'];
|
| 1788 |
|
$services[$index]['price'] = $service['price'];
|
| 1789 |
|
$services[$index]['currency'] = $service['currency'];
|
| 1790 |
|
$services[$index]['duration_days'] = $service['duration_days'];
|
| 1791 |
|
$services[$index]['renewable'] = $service['renewable'];
|
| 1792 |
|
$services[$index]['applies_to'] = $service['applies_to'];
|
| 1793 |
|
$services[$index]['owner_id'] = $service['owner_id'];
|
| 1794 |
|
$services[$index]['owner_name'] = api_get_person_name($service['firstname'], $service['lastname']);
|
| 1795 |
|
$services[$index]['visibility'] = $service['visibility'];
|
| 1796 |
|
$services[$index]['enrolled'] = "NO";
|
| 1797 |
|
}
|
| 1798 |
|
|
| 1799 |
|
return $services;
|
| 1800 |
|
}
|
|
@@ 1851-1864 (lines=14) @@
|
| 1848 |
|
|
| 1849 |
|
$services = [];
|
| 1850 |
|
|
| 1851 |
|
foreach ($return as $index => $service) {
|
| 1852 |
|
$services[$index]['id'] = $service['id'];
|
| 1853 |
|
$services[$index]['name'] = $service['name'];
|
| 1854 |
|
$services[$index]['description'] = $service['description'];
|
| 1855 |
|
$services[$index]['price'] = $service['price'];
|
| 1856 |
|
$services[$index]['currency'] = $service['currency'];
|
| 1857 |
|
$services[$index]['duration_days'] = $service['duration_days'];
|
| 1858 |
|
$services[$index]['renewable'] = $service['renewable'];
|
| 1859 |
|
$services[$index]['applies_to'] = $service['applies_to'];
|
| 1860 |
|
$services[$index]['owner_id'] = $service['owner_id'];
|
| 1861 |
|
$services[$index]['owner_name'] = api_get_person_name($service['firstname'], $service['lastname']);
|
| 1862 |
|
$services[$index]['visibility'] = $service['visibility'];
|
| 1863 |
|
$services[$index]['enrolled'] = "NO";
|
| 1864 |
|
}
|
| 1865 |
|
|
| 1866 |
|
return $services;
|
| 1867 |
|
|