Application/Api/Reporting/Custom/Herrnhut/Common.php
<?php
namespace SPHERE\Application\Api\Reporting\Custom\Herrnhut;
use MOC\V\Core\FileSystem\FileSystem;
use SPHERE\Application\Education\Lesson\Division\Division;
use SPHERE\Application\Reporting\Custom\Herrnhut\Person\Person;
/**
* Class Common
*
* @package SPHERE\Application\Api\Reporting\Custom\Herrnhut
*/
class Common
{
/**
* @param null $DivisionId
*
* @return string|bool
*/
public function downloadProfileList($DivisionId = null)
{
$tblDivision = Division::useService()->getDivisionById($DivisionId);
if ($tblDivision) {
$PersonList = Person::useService()->createProfileList($tblDivision);
if ($PersonList) {
$tblPersonList = Division::useService()->getStudentAllByDivision($tblDivision);
if ($tblPersonList) {
$fileLocation = Person::useService()->createProfileListExcel($PersonList, $tblPersonList);
return FileSystem::getDownload($fileLocation->getRealPath(),
"Herrnhut Klassenliste Profile ".$tblDivision->getDisplayName()
." ".date("Y-m-d H:i:s").".xlsx")->__toString();
}
}
}
return false;
}
/**
* @param null $DivisionId
*
* @return string|bool
*/
public function downloadSignList($DivisionId = null)
{
$tblDivision = Division::useService()->getDivisionById($DivisionId);
if ($tblDivision) {
$PersonList = Person::useService()->createSignList($tblDivision);
if ($PersonList) {
$tblPersonList = Division::useService()->getStudentAllByDivision($tblDivision);
if ($tblPersonList) {
$fileLocation = Person::useService()->createSignListExcel($PersonList, $tblPersonList);
return FileSystem::getDownload($fileLocation->getRealPath(),
"Herrnhut Unterschriftenliste ".$tblDivision->getDisplayName()
." ".date("Y-m-d H:i:s").".xlsx")->__toString();
}
}
}
return false;
}
/**
* @param null $DivisionId
*
* @return string|bool
*/
public function downloadLanguageList($DivisionId = null)
{
$tblDivision = Division::useService()->getDivisionById($DivisionId);
if ($tblDivision) {
$PersonList = Person::useService()->createLanguageList($tblDivision);
if ($PersonList) {
$tblPersonList = Division::useService()->getStudentAllByDivision($tblDivision);
if ($tblPersonList) {
$fileLocation = Person::useService()->createLanguageListExcel($PersonList, $tblPersonList);
return FileSystem::getDownload($fileLocation->getRealPath(),
"Herrnhut Klassenliste Fremdsprachen ".$tblDivision->getDisplayName()
." ".date("Y-m-d H:i:s").".xlsx")->__toString();
}
}
}
return false;
}
/**
* @param null $DivisionId
*
* @return string|bool
*/
public function downloadClassList($DivisionId = null)
{
$tblDivision = Division::useService()->getDivisionById($DivisionId);
if ($tblDivision) {
$PersonList = Person::useService()->createClassList($tblDivision);
if ($PersonList) {
$tblPersonList = Division::useService()->getStudentAllByDivision($tblDivision);
if ($tblPersonList) {
$fileLocation = Person::useService()->createClassListExcel($PersonList, $tblPersonList);
return FileSystem::getDownload($fileLocation->getRealPath(),
"Herrnhut Klassenliste ".$tblDivision->getDisplayName()
." ".date("Y-m-d H:i:s").".xlsx")->__toString();
}
}
}
return false;
}
/**
* @param null $DivisionId
*
* @return string|bool
*/
public function downloadExtendedClassList($DivisionId = null)
{
$tblDivision = Division::useService()->getDivisionById($DivisionId);
if ($tblDivision) {
$PersonList = Person::useService()->createExtendedClassList($tblDivision);
if ($PersonList) {
$tblPersonList = Division::useService()->getStudentAllByDivision($tblDivision);
if ($tblPersonList) {
$fileLocation = Person::useService()->createExtendedClassListExcel($PersonList, $tblPersonList);
return FileSystem::getDownload($fileLocation->getRealPath(),
"Herrnhut Erweiterte Klassenliste ".$tblDivision->getDisplayName()
." ".date("Y-m-d H:i:s").".xlsx")->__toString();
}
}
}
return false;
}
}