mirror of
https://github.com/Karaka-Management/oms-Calendar.git
synced 2026-02-15 07:58:41 +00:00
add todos from github
This commit is contained in:
parent
26318a2105
commit
8a5aad777b
|
|
@ -15,7 +15,7 @@ declare(strict_types=1);
|
||||||
namespace Modules\Calendar\Controller;
|
namespace Modules\Calendar\Controller;
|
||||||
|
|
||||||
use Modules\Calendar\Models\CalendarMapper;
|
use Modules\Calendar\Models\CalendarMapper;
|
||||||
|
use Modules\Dashboard\Models\DashboardElementInterface;
|
||||||
use phpOMS\Asset\AssetType;
|
use phpOMS\Asset\AssetType;
|
||||||
use phpOMS\Contract\RenderableInterface;
|
use phpOMS\Contract\RenderableInterface;
|
||||||
use phpOMS\Message\RequestAbstract;
|
use phpOMS\Message\RequestAbstract;
|
||||||
|
|
@ -30,8 +30,13 @@ use phpOMS\Views\View;
|
||||||
* @license OMS License 1.0
|
* @license OMS License 1.0
|
||||||
* @link https://orange-management.org
|
* @link https://orange-management.org
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
|
*
|
||||||
|
* @todo Orange-Management/Modules#52
|
||||||
|
* Allow user to define start of week
|
||||||
|
* Weeks should be customizable. Some prefer the week to start on Monday, others on Sunday etc.
|
||||||
|
* This is probably a global setting in the backend or user localization!
|
||||||
*/
|
*/
|
||||||
final class BackendController extends Controller
|
final class BackendController extends Controller implements DashboardElementInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Routing end-point for application behaviour.
|
* Routing end-point for application behaviour.
|
||||||
|
|
@ -67,16 +72,7 @@ final class BackendController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Routing end-point for application behaviour.
|
* {@inheritdoc}
|
||||||
*
|
|
||||||
* @param RequestAbstract $request Request
|
|
||||||
* @param ResponseAbstract $response Response
|
|
||||||
* @param mixed $data Generic data
|
|
||||||
*
|
|
||||||
* @return RenderableInterface
|
|
||||||
*
|
|
||||||
* @since 1.0.0
|
|
||||||
* @codeCoverageIgnore
|
|
||||||
*/
|
*/
|
||||||
public function viewDashboard(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface
|
public function viewDashboard(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,10 @@
|
||||||
* @license OMS License 1.0
|
* @license OMS License 1.0
|
||||||
* @version 1.0.0
|
* @version 1.0.0
|
||||||
* @link https://orange-management.org
|
* @link https://orange-management.org
|
||||||
* @todo only load events of 3 month or 1 year?!
|
*
|
||||||
|
* @todo Orange-Management/Modules#191
|
||||||
|
* When showing a calendar the default behavior should be to only load a fixed amount of months in order to avoid unnecessary overhead.
|
||||||
|
* Maybe only load the current month, the next month and the previous month.
|
||||||
*/
|
*/
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
@ -27,14 +30,6 @@ use phpOMS\DataStorage\Database\DataMapperAbstract;
|
||||||
*/
|
*/
|
||||||
final class CalendarMapper extends DataMapperAbstract
|
final class CalendarMapper extends DataMapperAbstract
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* Class name.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
* @since 1.0.0
|
|
||||||
*/
|
|
||||||
protected static $CLASS = __CLASS__;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Columns.
|
* Columns.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,10 @@
|
||||||
<?php declare(strict_types=1);
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @todo Orange-Management/Modules#69
|
||||||
|
* Create a popup when clicking on an event with full information.
|
||||||
|
*/
|
||||||
|
|
||||||
$calendar = $this->getData('calendar');
|
$calendar = $this->getData('calendar');
|
||||||
?>
|
?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,11 @@
|
||||||
*/
|
*/
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @todo Orange-Management/Modules#69
|
||||||
|
* Create a popup when clicking on an event with full information.
|
||||||
|
*/
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<div id="calendar-dashboard" class="col-xs-12 col-md-6" draggable="true">
|
<div id="calendar-dashboard" class="col-xs-12 col-md-6" draggable="true">
|
||||||
<?= $this->getData('calendar')->render($this->getData('cal')); ?>
|
<?= $this->getData('calendar')->render($this->getData('cal')); ?>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user