@@ -21,7 +21,7 @@ |
||
| 21 | 21 | * @param \Fisharebest\Webtrees\Module\AbstractModule $module |
| 22 | 22 | * @param string $request |
| 23 | 23 | */ |
| 24 | - public function handle(\Fisharebest\Webtrees\Module\AbstractModule $module, $request); |
|
| 24 | + public function handle(\Fisharebest\Webtrees\Module\AbstractModule $module, $request); |
|
| 25 | 25 | |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | \ No newline at end of file |
@@ -17,87 +17,87 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | class ViewFactory { |
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * @var ViewFactory $instance Singleton pattern instance |
|
| 22 | - */ |
|
| 23 | - private static $instance = null; |
|
| 20 | + /** |
|
| 21 | + * @var ViewFactory $instance Singleton pattern instance |
|
| 22 | + */ |
|
| 23 | + private static $instance = null; |
|
| 24 | 24 | |
| 25 | - /** |
|
| 26 | - * Returns the *ViewFactory* instance of this class. |
|
| 27 | - * |
|
| 28 | - * @return ViewFactory The *Singleton* instance. |
|
| 29 | - */ |
|
| 30 | - public static function getInstance() |
|
| 31 | - { |
|
| 32 | - if (null === static::$instance) { |
|
| 33 | - static::$instance = new static(); |
|
| 34 | - } |
|
| 25 | + /** |
|
| 26 | + * Returns the *ViewFactory* instance of this class. |
|
| 27 | + * |
|
| 28 | + * @return ViewFactory The *Singleton* instance. |
|
| 29 | + */ |
|
| 30 | + public static function getInstance() |
|
| 31 | + { |
|
| 32 | + if (null === static::$instance) { |
|
| 33 | + static::$instance = new static(); |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | - return static::$instance; |
|
| 37 | - } |
|
| 36 | + return static::$instance; |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * Protected constructor |
|
| 41 | - */ |
|
| 42 | - protected function __construct() {} |
|
| 39 | + /** |
|
| 40 | + * Protected constructor |
|
| 41 | + */ |
|
| 42 | + protected function __construct() {} |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * Return the view specified by the controller and view name, using data from the ViewBag |
|
| 46 | - * |
|
| 47 | - * @param string $view_name |
|
| 48 | - * @param \MyArtJaub\Webtrees\Mvc\Controller\MvcControllerInterface $mvc_ctrl |
|
| 49 | - * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 50 | - * @param \MyArtJaub\Webtrees\Mvc\View\ViewBag $data |
|
| 51 | - * @return \MyArtJaub\Webtrees\Mvc\View\AbstractView View |
|
| 52 | - * @throws \Exception |
|
| 53 | - */ |
|
| 54 | - public function makeView($view_name, MvcController $mvc_ctrl, BaseController $ctrl, ViewBag $data) |
|
| 55 | - { |
|
| 56 | - if(!$mvc_ctrl) throw new \Exception('Mvc Controller not defined'); |
|
| 57 | - if(!$ctrl) throw new \Exception('Base Controller not defined'); |
|
| 58 | - if(!$view_name) throw new \Exception('View not defined'); |
|
| 44 | + /** |
|
| 45 | + * Return the view specified by the controller and view name, using data from the ViewBag |
|
| 46 | + * |
|
| 47 | + * @param string $view_name |
|
| 48 | + * @param \MyArtJaub\Webtrees\Mvc\Controller\MvcControllerInterface $mvc_ctrl |
|
| 49 | + * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 50 | + * @param \MyArtJaub\Webtrees\Mvc\View\ViewBag $data |
|
| 51 | + * @return \MyArtJaub\Webtrees\Mvc\View\AbstractView View |
|
| 52 | + * @throws \Exception |
|
| 53 | + */ |
|
| 54 | + public function makeView($view_name, MvcController $mvc_ctrl, BaseController $ctrl, ViewBag $data) |
|
| 55 | + { |
|
| 56 | + if(!$mvc_ctrl) throw new \Exception('Mvc Controller not defined'); |
|
| 57 | + if(!$ctrl) throw new \Exception('Base Controller not defined'); |
|
| 58 | + if(!$view_name) throw new \Exception('View not defined'); |
|
| 59 | 59 | |
| 60 | - $mvc_ctrl_refl = new \ReflectionObject($mvc_ctrl); |
|
| 61 | - $view_class = $mvc_ctrl_refl->getNamespaceName() . '\\Views\\' . $view_name . 'View'; |
|
| 62 | - if(!class_exists($view_class)) throw new \Exception('View does not exist'); |
|
| 60 | + $mvc_ctrl_refl = new \ReflectionObject($mvc_ctrl); |
|
| 61 | + $view_class = $mvc_ctrl_refl->getNamespaceName() . '\\Views\\' . $view_name . 'View'; |
|
| 62 | + if(!class_exists($view_class)) throw new \Exception('View does not exist'); |
|
| 63 | 63 | |
| 64 | - return new $view_class($ctrl, $data); |
|
| 65 | - } |
|
| 64 | + return new $view_class($ctrl, $data); |
|
| 65 | + } |
|
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * Static invocation of the makeView method |
|
| 69 | - * |
|
| 70 | - * @param string $view_name |
|
| 71 | - * @param \MyArtJaub\Webtrees\Mvc\Controller\MvcControllerInterface $mvc_ctrl |
|
| 72 | - * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 73 | - * @param \MyArtJaub\Webtrees\Mvc\View\ViewBag $data |
|
| 74 | - * @return \MyArtJaub\Webtrees\Mvc\View\AbstractView View |
|
| 75 | - * @see \MyArtJaub\Webtrees\Mvc\View\ViewFactory::handle() |
|
| 76 | - */ |
|
| 77 | - public static function make($view_name, MvcController $mvc_ctrl, BaseController $ctrl, ViewBag $data) |
|
| 78 | - { |
|
| 79 | - return self::getInstance()->makeView($view_name, $mvc_ctrl, $ctrl, $data); |
|
| 80 | - } |
|
| 67 | + /** |
|
| 68 | + * Static invocation of the makeView method |
|
| 69 | + * |
|
| 70 | + * @param string $view_name |
|
| 71 | + * @param \MyArtJaub\Webtrees\Mvc\Controller\MvcControllerInterface $mvc_ctrl |
|
| 72 | + * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 73 | + * @param \MyArtJaub\Webtrees\Mvc\View\ViewBag $data |
|
| 74 | + * @return \MyArtJaub\Webtrees\Mvc\View\AbstractView View |
|
| 75 | + * @see \MyArtJaub\Webtrees\Mvc\View\ViewFactory::handle() |
|
| 76 | + */ |
|
| 77 | + public static function make($view_name, MvcController $mvc_ctrl, BaseController $ctrl, ViewBag $data) |
|
| 78 | + { |
|
| 79 | + return self::getInstance()->makeView($view_name, $mvc_ctrl, $ctrl, $data); |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * Private clone method to prevent cloning of the instance of the |
|
| 84 | - * *Dispatcher* instance. |
|
| 85 | - * |
|
| 86 | - * @return void |
|
| 87 | - */ |
|
| 88 | - private function __clone() |
|
| 89 | - { |
|
| 90 | - } |
|
| 82 | + /** |
|
| 83 | + * Private clone method to prevent cloning of the instance of the |
|
| 84 | + * *Dispatcher* instance. |
|
| 85 | + * |
|
| 86 | + * @return void |
|
| 87 | + */ |
|
| 88 | + private function __clone() |
|
| 89 | + { |
|
| 90 | + } |
|
| 91 | 91 | |
| 92 | - /** |
|
| 93 | - * Private unserialize method to prevent unserializing of the *Dispatcher* |
|
| 94 | - * instance. |
|
| 95 | - * |
|
| 96 | - * @return void |
|
| 97 | - */ |
|
| 98 | - private function __wakeup() |
|
| 99 | - { |
|
| 100 | - } |
|
| 92 | + /** |
|
| 93 | + * Private unserialize method to prevent unserializing of the *Dispatcher* |
|
| 94 | + * instance. |
|
| 95 | + * |
|
| 96 | + * @return void |
|
| 97 | + */ |
|
| 98 | + private function __wakeup() |
|
| 99 | + { |
|
| 100 | + } |
|
| 101 | 101 | |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | \ No newline at end of file |
@@ -15,62 +15,62 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | abstract class AbstractView { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Reference controller |
|
| 20 | - * @var \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 21 | - */ |
|
| 22 | - protected $ctrl; |
|
| 18 | + /** |
|
| 19 | + * Reference controller |
|
| 20 | + * @var \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 21 | + */ |
|
| 22 | + protected $ctrl; |
|
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * Structure containing the data of the view |
|
| 26 | - * @var ViewBag $data |
|
| 27 | - */ |
|
| 28 | - protected $data; |
|
| 24 | + /** |
|
| 25 | + * Structure containing the data of the view |
|
| 26 | + * @var ViewBag $data |
|
| 27 | + */ |
|
| 28 | + protected $data; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * Constructor |
|
| 32 | - * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl Controller |
|
| 33 | - * @param ViewBag $data ViewBag holding view data |
|
| 34 | - */ |
|
| 35 | - public function __construct(\Fisharebest\Webtrees\Controller\BaseController $ctrl, ViewBag $data) { |
|
| 36 | - $this->ctrl = $ctrl; |
|
| 37 | - $this->data = $data; |
|
| 38 | - } |
|
| 30 | + /** |
|
| 31 | + * Constructor |
|
| 32 | + * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl Controller |
|
| 33 | + * @param ViewBag $data ViewBag holding view data |
|
| 34 | + */ |
|
| 35 | + public function __construct(\Fisharebest\Webtrees\Controller\BaseController $ctrl, ViewBag $data) { |
|
| 36 | + $this->ctrl = $ctrl; |
|
| 37 | + $this->data = $data; |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Render the view to the page, including header. |
|
| 42 | - * |
|
| 43 | - * @throws \Exception |
|
| 44 | - */ |
|
| 45 | - public function render() { |
|
| 40 | + /** |
|
| 41 | + * Render the view to the page, including header. |
|
| 42 | + * |
|
| 43 | + * @throws \Exception |
|
| 44 | + */ |
|
| 45 | + public function render() { |
|
| 46 | 46 | global $controller; |
| 47 | 47 | |
| 48 | - if(!$this->ctrl) throw new \Exception('Controller not initialised'); |
|
| 48 | + if(!$this->ctrl) throw new \Exception('Controller not initialised'); |
|
| 49 | 49 | |
| 50 | 50 | $controller = $this->ctrl; |
| 51 | - $this->ctrl->pageHeader(); |
|
| 51 | + $this->ctrl->pageHeader(); |
|
| 52 | 52 | |
| 53 | - echo $this->renderContent(); |
|
| 54 | - } |
|
| 53 | + echo $this->renderContent(); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * Render the view to the page, without any header |
|
| 58 | - */ |
|
| 59 | - public function renderPartial() { |
|
| 60 | - echo $this->getHtmlPartial(); |
|
| 61 | - } |
|
| 56 | + /** |
|
| 57 | + * Render the view to the page, without any header |
|
| 58 | + */ |
|
| 59 | + public function renderPartial() { |
|
| 60 | + echo $this->getHtmlPartial(); |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - /** |
|
| 64 | - * Return the HTML code generated by the view, without any header |
|
| 65 | - */ |
|
| 66 | - public function getHtmlPartial() { |
|
| 67 | - return $this->renderContent(); |
|
| 68 | - } |
|
| 63 | + /** |
|
| 64 | + * Return the HTML code generated by the view, without any header |
|
| 65 | + */ |
|
| 66 | + public function getHtmlPartial() { |
|
| 67 | + return $this->renderContent(); |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - /** |
|
| 71 | - * Abstract method containing the details of the view. |
|
| 72 | - */ |
|
| 73 | - abstract protected function renderContent(); |
|
| 70 | + /** |
|
| 71 | + * Abstract method containing the details of the view. |
|
| 72 | + */ |
|
| 73 | + abstract protected function renderContent(); |
|
| 74 | 74 | |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | \ No newline at end of file |
@@ -1,13 +1,13 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * webtrees-lib: MyArtJaub library for webtrees |
|
| 4 | - * |
|
| 5 | - * @package MyArtJaub\Webtrees |
|
| 6 | - * @subpackage Hook |
|
| 7 | - * @author Jonathan Jaubart <[email protected]> |
|
| 8 | - * @copyright Copyright (c) 2011-2016, Jonathan Jaubart |
|
| 9 | - * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 |
|
| 10 | - */ |
|
| 3 | + * webtrees-lib: MyArtJaub library for webtrees |
|
| 4 | + * |
|
| 5 | + * @package MyArtJaub\Webtrees |
|
| 6 | + * @subpackage Hook |
|
| 7 | + * @author Jonathan Jaubart <[email protected]> |
|
| 8 | + * @copyright Copyright (c) 2011-2016, Jonathan Jaubart |
|
| 9 | + * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 |
|
| 10 | + */ |
|
| 11 | 11 | namespace MyArtJaub\Webtrees\Hook; |
| 12 | 12 | |
| 13 | 13 | use \Fisharebest\Webtrees as fw; |
@@ -15,13 +15,13 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | interface HookSubscriberInterface { |
| 17 | 17 | |
| 18 | - /** |
|
| 18 | + /** |
|
| 19 | 19 | * Return the list of functions implementented in the class which needs to be registered as hooks. |
| 20 | 20 | * The format is either { function1, function 2,...} in which case the priority is the default one |
| 21 | 21 | * or { function1 => priority1, function2 => priority2, ...} |
| 22 | 22 | * |
| 23 | 23 | * @return array Array of hooks |
| 24 | 24 | */ |
| 25 | - public function getSubscribedHooks(); |
|
| 25 | + public function getSubscribedHooks(); |
|
| 26 | 26 | |
| 27 | 27 | } |
| 28 | 28 | \ No newline at end of file |
@@ -28,29 +28,29 @@ discard block |
||
| 28 | 28 | class IsSourcedModule extends AbstractModule |
| 29 | 29 | implements ModuleSidebarInterface, HookSubscriberInterface, IndividualHeaderExtenderInterface, RecordNameTextExtenderInterface |
| 30 | 30 | { |
| 31 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 32 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 31 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 32 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * {@inheritDoc} |
|
| 36 | - * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
| 37 | - */ |
|
| 38 | - public function getTitle() { |
|
| 39 | - return I18N::translate('Sourced events'); |
|
| 40 | - } |
|
| 34 | + /** |
|
| 35 | + * {@inheritDoc} |
|
| 36 | + * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
| 37 | + */ |
|
| 38 | + public function getTitle() { |
|
| 39 | + return I18N::translate('Sourced events'); |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * {@inheritDoc} |
| 44 | 44 | * @see \Fisharebest\Webtrees\Module\AbstractModule::getDescription() |
| 45 | 45 | */ |
| 46 | - public function getDescription() { |
|
| 47 | - return I18N::translate('Indicate if events related to an record are sourced.'); |
|
| 48 | - } |
|
| 46 | + public function getDescription() { |
|
| 47 | + return I18N::translate('Indicate if events related to an record are sourced.'); |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * {@inheritDoc} |
|
| 52 | - * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
| 53 | - */ |
|
| 50 | + /** |
|
| 51 | + * {@inheritDoc} |
|
| 52 | + * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
| 53 | + */ |
|
| 54 | 54 | public function getSubscribedHooks() { |
| 55 | 55 | return array( |
| 56 | 56 | 'hExtendIndiHeaderIcons' => 10, |
@@ -63,12 +63,12 @@ discard block |
||
| 63 | 63 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
| 64 | 64 | */ |
| 65 | 65 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
| 66 | - if($ctrlIndi){ |
|
| 67 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
| 68 | - if ($dindi->canDisplayIsSourced()) |
|
| 69 | - return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
| 70 | - } |
|
| 71 | - return ''; |
|
| 66 | + if($ctrlIndi){ |
|
| 67 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
| 68 | + if ($dindi->canDisplayIsSourced()) |
|
| 69 | + return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
| 70 | + } |
|
| 71 | + return ''; |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | /** |
@@ -94,15 +94,15 @@ discard block |
||
| 94 | 94 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
| 95 | 95 | */ |
| 96 | 96 | public function hRecordNameAppend(GedcomRecord $grec){ |
| 97 | - $html = ''; |
|
| 98 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
| 99 | - $dindi = new Individual($grec); |
|
| 100 | - $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'small'); |
|
| 101 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, 'small'); |
|
| 102 | - if($grec->isDead()) |
|
| 103 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, 'small'); |
|
| 104 | - } |
|
| 105 | - return $html; |
|
| 97 | + $html = ''; |
|
| 98 | + if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
| 99 | + $dindi = new Individual($grec); |
|
| 100 | + $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'small'); |
|
| 101 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, 'small'); |
|
| 102 | + if($grec->isDead()) |
|
| 103 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, 'small'); |
|
| 104 | + } |
|
| 105 | + return $html; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | /** |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::defaultSidebarOrder() |
| 111 | 111 | */ |
| 112 | 112 | public function defaultSidebarOrder() { |
| 113 | - return 15; |
|
| 113 | + return 15; |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::hasSidebarContent() |
| 119 | 119 | */ |
| 120 | 120 | public function hasSidebarContent(){ |
| 121 | - return true; |
|
| 121 | + return true; |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::getSidebarAjaxContent() |
| 127 | 127 | */ |
| 128 | 128 | public function getSidebarAjaxContent() { |
| 129 | - return ''; |
|
| 129 | + return ''; |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -134,17 +134,17 @@ discard block |
||
| 134 | 134 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::getSidebarContent() |
| 135 | 135 | */ |
| 136 | 136 | public function getSidebarContent() { |
| 137 | - global $controller; |
|
| 137 | + global $controller; |
|
| 138 | 138 | |
| 139 | - ob_start(); |
|
| 140 | - $root = $controller->getSignificantIndividual(); |
|
| 141 | - if ($root) { |
|
| 142 | - $dindi = new Individual($root); |
|
| 139 | + ob_start(); |
|
| 140 | + $root = $controller->getSignificantIndividual(); |
|
| 141 | + if ($root) { |
|
| 142 | + $dindi = new Individual($root); |
|
| 143 | 143 | |
| 144 | - if (!$dindi->canDisplayIsSourced()) { |
|
| 145 | - echo '<div class="error">', I18N::translate('This information is private and cannot be shown.'), '</div>'; |
|
| 146 | - } else { |
|
| 147 | - echo ' |
|
| 144 | + if (!$dindi->canDisplayIsSourced()) { |
|
| 145 | + echo '<div class="error">', I18N::translate('This information is private and cannot be shown.'), '</div>'; |
|
| 146 | + } else { |
|
| 147 | + echo ' |
|
| 148 | 148 | <table class="issourcedtable"> |
| 149 | 149 | <tr> |
| 150 | 150 | <td class="slabel"> ' . GedcomTag::getLabel('INDI') . '</td> |
@@ -155,35 +155,35 @@ discard block |
||
| 155 | 155 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1).'</td> |
| 156 | 156 | </tr>'; |
| 157 | 157 | |
| 158 | - $fams = $root->getSpouseFamilies(); |
|
| 159 | - ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
| 160 | - foreach($fams as $fam){ |
|
| 161 | - $dfam = new Family($fam); |
|
| 162 | - echo ' |
|
| 158 | + $fams = $root->getSpouseFamilies(); |
|
| 159 | + ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
| 160 | + foreach($fams as $fam){ |
|
| 161 | + $dfam = new Family($fam); |
|
| 162 | + echo ' |
|
| 163 | 163 | <tr> |
| 164 | 164 | <td class="slabel right"> |
| 165 | 165 | <a href="' . $fam->getHtmlUrl() . '"> '. GedcomTag::getLabel('MARR'); |
| 166 | - if($ct > 1){ |
|
| 167 | - echo ' ',$nb; |
|
| 168 | - $nb++; |
|
| 169 | - } |
|
| 170 | - echo ' </a> |
|
| 166 | + if($ct > 1){ |
|
| 167 | + echo ' ',$nb; |
|
| 168 | + $nb++; |
|
| 169 | + } |
|
| 170 | + echo ' </a> |
|
| 171 | 171 | </td> |
| 172 | 172 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dfam->isMarriageSourced(), 'MARR', 1).'</td> |
| 173 | 173 | </tr>'; |
| 174 | - } |
|
| 174 | + } |
|
| 175 | 175 | |
| 176 | - if( $root->isDead() ) |
|
| 177 | - echo ' |
|
| 176 | + if( $root->isDead() ) |
|
| 177 | + echo ' |
|
| 178 | 178 | <tr> |
| 179 | 179 | <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
| 180 | 180 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
| 181 | 181 | </tr>'; |
| 182 | 182 | |
| 183 | - echo '</table>'; |
|
| 184 | - } |
|
| 185 | - } |
|
| 186 | - return ob_get_clean(); |
|
| 183 | + echo '</table>'; |
|
| 184 | + } |
|
| 185 | + } |
|
| 186 | + return ob_get_clean(); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | |
@@ -24,82 +24,82 @@ |
||
| 24 | 24 | class GeoDispersionModule extends AbstractModule implements ModuleConfigInterface, DependentInterface { |
| 25 | 25 | |
| 26 | 26 | // How to update the database schema for this module |
| 27 | - const SCHEMA_TARGET_VERSION = 1; |
|
| 28 | - const SCHEMA_SETTING_NAME = 'MAJ_GEODISP_SCHEMA_VERSION'; |
|
| 29 | - const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\GeoDispersion\Schema'; |
|
| 27 | + const SCHEMA_TARGET_VERSION = 1; |
|
| 28 | + const SCHEMA_SETTING_NAME = 'MAJ_GEODISP_SCHEMA_VERSION'; |
|
| 29 | + const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\GeoDispersion\Schema'; |
|
| 30 | 30 | |
| 31 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 32 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 31 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 32 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * GeoDispersion analysis provider |
|
| 36 | - * @var \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider $provider |
|
| 37 | - */ |
|
| 38 | - protected $provider; |
|
| 34 | + /** |
|
| 35 | + * GeoDispersion analysis provider |
|
| 36 | + * @var \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider $provider |
|
| 37 | + */ |
|
| 38 | + protected $provider; |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * {@inhericDoc} |
|
| 42 | - */ |
|
| 43 | - public function getTitle() { |
|
| 44 | - return /* I18N: Name of the “Hooks” module */ I18N::translate('Geographical Dispersion'); |
|
| 45 | - } |
|
| 40 | + /** |
|
| 41 | + * {@inhericDoc} |
|
| 42 | + */ |
|
| 43 | + public function getTitle() { |
|
| 44 | + return /* I18N: Name of the “Hooks” module */ I18N::translate('Geographical Dispersion'); |
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | - /** |
|
| 48 | - * {@inhericDoc} |
|
| 49 | - */ |
|
| 50 | - public function getDescription() { |
|
| 51 | - return /* I18N: Description of the “Hooks” module */ I18N::translate('Display the geographical dispersion of the root person’s Sosa ancestors.'); |
|
| 52 | - } |
|
| 47 | + /** |
|
| 48 | + * {@inhericDoc} |
|
| 49 | + */ |
|
| 50 | + public function getDescription() { |
|
| 51 | + return /* I18N: Description of the “Hooks” module */ I18N::translate('Display the geographical dispersion of the root person’s Sosa ancestors.'); |
|
| 52 | + } |
|
| 53 | 53 | |
| 54 | - /** |
|
| 55 | - * {@inhericDoc} |
|
| 56 | - */ |
|
| 57 | - public function modAction($mod_action) { |
|
| 58 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 54 | + /** |
|
| 55 | + * {@inhericDoc} |
|
| 56 | + */ |
|
| 57 | + public function modAction($mod_action) { |
|
| 58 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 59 | 59 | |
| 60 | - \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
| 61 | - } |
|
| 60 | + \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - /** |
|
| 64 | - * {@inhericDoc} |
|
| 65 | - * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
| 66 | - */ |
|
| 67 | - public function getConfigLink() { |
|
| 68 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 63 | + /** |
|
| 64 | + * {@inhericDoc} |
|
| 65 | + * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
| 66 | + */ |
|
| 67 | + public function getConfigLink() { |
|
| 68 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 69 | 69 | |
| 70 | - return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
| 71 | - } |
|
| 70 | + return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
| 71 | + } |
|
| 72 | 72 | |
| 73 | - /** |
|
| 74 | - * {@inhericDoc} |
|
| 75 | - * @see \MyArtJaub\Webtrees\Module\DependentInterface::validatePrerequisites() |
|
| 76 | - */ |
|
| 77 | - public function validatePrerequisites() { |
|
| 78 | - return !is_null(Module::getModuleByName(Constants::MODULE_MAJ_SOSA_NAME)); |
|
| 79 | - } |
|
| 73 | + /** |
|
| 74 | + * {@inhericDoc} |
|
| 75 | + * @see \MyArtJaub\Webtrees\Module\DependentInterface::validatePrerequisites() |
|
| 76 | + */ |
|
| 77 | + public function validatePrerequisites() { |
|
| 78 | + return !is_null(Module::getModuleByName(Constants::MODULE_MAJ_SOSA_NAME)); |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | 81 | /** |
| 82 | 82 | * Get the GeoAnalysis Provider (initialise it if not done yet). |
| 83 | 83 | * |
| 84 | 84 | * @return \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider |
| 85 | 85 | */ |
| 86 | - public function getProvider() { |
|
| 87 | - global $WT_TREE; |
|
| 86 | + public function getProvider() { |
|
| 87 | + global $WT_TREE; |
|
| 88 | 88 | |
| 89 | - if(!$this->provider) { |
|
| 90 | - $this->provider = new GeoAnalysisProvider($WT_TREE); |
|
| 91 | - } |
|
| 92 | - return $this->provider; |
|
| 93 | - } |
|
| 89 | + if(!$this->provider) { |
|
| 90 | + $this->provider = new GeoAnalysisProvider($WT_TREE); |
|
| 91 | + } |
|
| 92 | + return $this->provider; |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | 95 | /** |
| 96 | 96 | * Set the GeoAnalysis Provider. |
| 97 | 97 | * |
| 98 | 98 | * @return \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider |
| 99 | 99 | */ |
| 100 | - public function setProvider(GeoAnalysisProvider $provider) { |
|
| 101 | - $this->provider = $provider; |
|
| 102 | - } |
|
| 100 | + public function setProvider(GeoAnalysisProvider $provider) { |
|
| 101 | + $this->provider = $provider; |
|
| 102 | + } |
|
| 103 | 103 | |
| 104 | 104 | |
| 105 | 105 | } |
@@ -23,64 +23,64 @@ discard block |
||
| 23 | 23 | class AdminTasksModule extends AbstractModule |
| 24 | 24 | implements ModuleConfigInterface, ModuleBlockInterface |
| 25 | 25 | { |
| 26 | - // How to update the database schema for this module |
|
| 27 | - const SCHEMA_TARGET_VERSION = 1; |
|
| 28 | - const SCHEMA_SETTING_NAME = 'MAJ_ADMTASKS_SCHEMA_VERSION'; |
|
| 29 | - const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\AdminTasks\Schema'; |
|
| 26 | + // How to update the database schema for this module |
|
| 27 | + const SCHEMA_TARGET_VERSION = 1; |
|
| 28 | + const SCHEMA_SETTING_NAME = 'MAJ_ADMTASKS_SCHEMA_VERSION'; |
|
| 29 | + const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\AdminTasks\Schema'; |
|
| 30 | 30 | |
| 31 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 32 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 31 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 32 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * Admin Task provider |
|
| 36 | - * @var \MyArtJaub\Webtrees\Module\AdminTasks\Model\TaskProviderInterface $provider |
|
| 37 | - */ |
|
| 38 | - protected $provider; |
|
| 34 | + /** |
|
| 35 | + * Admin Task provider |
|
| 36 | + * @var \MyArtJaub\Webtrees\Module\AdminTasks\Model\TaskProviderInterface $provider |
|
| 37 | + */ |
|
| 38 | + protected $provider; |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * {@inheritDoc} |
|
| 42 | - * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
| 43 | - */ |
|
| 44 | - public function getTitle() { |
|
| 45 | - return I18N::translate('Administration Tasks'); |
|
| 46 | - } |
|
| 40 | + /** |
|
| 41 | + * {@inheritDoc} |
|
| 42 | + * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
| 43 | + */ |
|
| 44 | + public function getTitle() { |
|
| 45 | + return I18N::translate('Administration Tasks'); |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | 49 | * {@inheritDoc} |
| 50 | 50 | * @see \Fisharebest\Webtrees\Module\AbstractModule::getDescription() |
| 51 | 51 | */ |
| 52 | - public function getDescription() { |
|
| 53 | - return I18N::translate('Manage and run nearly-scheduled administration tasks.'); |
|
| 54 | - } |
|
| 52 | + public function getDescription() { |
|
| 53 | + return I18N::translate('Manage and run nearly-scheduled administration tasks.'); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * {@inheritDoc} |
|
| 58 | - * @see \Fisharebest\Webtrees\Module\AbstractModule::modAction() |
|
| 59 | - */ |
|
| 60 | - public function modAction($mod_action) { |
|
| 61 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 56 | + /** |
|
| 57 | + * {@inheritDoc} |
|
| 58 | + * @see \Fisharebest\Webtrees\Module\AbstractModule::modAction() |
|
| 59 | + */ |
|
| 60 | + public function modAction($mod_action) { |
|
| 61 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 62 | 62 | |
| 63 | - \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
| 64 | - } |
|
| 63 | + \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | - /** |
|
| 67 | - * {@inheritDoc} |
|
| 68 | - * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
| 69 | - */ |
|
| 70 | - public function getConfigLink() { |
|
| 71 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 66 | + /** |
|
| 67 | + * {@inheritDoc} |
|
| 68 | + * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
| 69 | + */ |
|
| 70 | + public function getConfigLink() { |
|
| 71 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
| 72 | 72 | |
| 73 | - return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
| 74 | - } |
|
| 73 | + return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | - /** |
|
| 77 | - * {@inheritDoc} |
|
| 78 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::getBlock() |
|
| 79 | - */ |
|
| 80 | - public function getBlock($block_id, $template = true, $cfg = array()) { |
|
| 81 | - global $controller; |
|
| 76 | + /** |
|
| 77 | + * {@inheritDoc} |
|
| 78 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::getBlock() |
|
| 79 | + */ |
|
| 80 | + public function getBlock($block_id, $template = true, $cfg = array()) { |
|
| 81 | + global $controller; |
|
| 82 | 82 | |
| 83 | - $controller->addInlineJavascript(' |
|
| 83 | + $controller->addInlineJavascript(' |
|
| 84 | 84 | $(document).ready(function(){ |
| 85 | 85 | $.ajax({ |
| 86 | 86 | url: "module.php", |
@@ -91,60 +91,60 @@ discard block |
||
| 91 | 91 | }); |
| 92 | 92 | }); |
| 93 | 93 | '); |
| 94 | - return ''; |
|
| 95 | - } |
|
| 94 | + return ''; |
|
| 95 | + } |
|
| 96 | 96 | |
| 97 | - /** |
|
| 98 | - * {@inheritDoc} |
|
| 99 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::loadAjax() |
|
| 100 | - */ |
|
| 101 | - public function loadAjax() { |
|
| 102 | - return false; |
|
| 103 | - } |
|
| 97 | + /** |
|
| 98 | + * {@inheritDoc} |
|
| 99 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::loadAjax() |
|
| 100 | + */ |
|
| 101 | + public function loadAjax() { |
|
| 102 | + return false; |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - /** |
|
| 106 | - * {@inheritDoc} |
|
| 107 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isGedcomBlock() |
|
| 108 | - */ |
|
| 109 | - public function isGedcomBlock() { |
|
| 110 | - return true; |
|
| 111 | - } |
|
| 105 | + /** |
|
| 106 | + * {@inheritDoc} |
|
| 107 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isGedcomBlock() |
|
| 108 | + */ |
|
| 109 | + public function isGedcomBlock() { |
|
| 110 | + return true; |
|
| 111 | + } |
|
| 112 | 112 | |
| 113 | - /** |
|
| 114 | - * {@inheritDoc} |
|
| 115 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isUserBlock() |
|
| 116 | - */ |
|
| 117 | - public function isUserBlock() { |
|
| 118 | - return false; |
|
| 119 | - } |
|
| 113 | + /** |
|
| 114 | + * {@inheritDoc} |
|
| 115 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isUserBlock() |
|
| 116 | + */ |
|
| 117 | + public function isUserBlock() { |
|
| 118 | + return false; |
|
| 119 | + } |
|
| 120 | 120 | |
| 121 | - /** |
|
| 122 | - * {@inheritDoc} |
|
| 123 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::configureBlock() |
|
| 124 | - */ |
|
| 125 | - public function configureBlock($block_id) { |
|
| 121 | + /** |
|
| 122 | + * {@inheritDoc} |
|
| 123 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::configureBlock() |
|
| 124 | + */ |
|
| 125 | + public function configureBlock($block_id) { |
|
| 126 | 126 | |
| 127 | - } |
|
| 127 | + } |
|
| 128 | 128 | |
| 129 | 129 | /** |
| 130 | - * Get the Admin Tasks Provider (initialise it if not done yet). |
|
| 131 | - * |
|
| 132 | - * @return \MyArtJaub\Webtrees\Module\AdminTasks\Model\TaskProviderInterface |
|
| 133 | - */ |
|
| 134 | - public function getProvider() { |
|
| 135 | - if(!$this->provider) { |
|
| 136 | - $this->provider = new TaskProvider(WT_ROOT.WT_MODULES_DIR.$this->getName().'/tasks/'); |
|
| 137 | - } |
|
| 138 | - return $this->provider; |
|
| 139 | - } |
|
| 130 | + * Get the Admin Tasks Provider (initialise it if not done yet). |
|
| 131 | + * |
|
| 132 | + * @return \MyArtJaub\Webtrees\Module\AdminTasks\Model\TaskProviderInterface |
|
| 133 | + */ |
|
| 134 | + public function getProvider() { |
|
| 135 | + if(!$this->provider) { |
|
| 136 | + $this->provider = new TaskProvider(WT_ROOT.WT_MODULES_DIR.$this->getName().'/tasks/'); |
|
| 137 | + } |
|
| 138 | + return $this->provider; |
|
| 139 | + } |
|
| 140 | 140 | |
| 141 | 141 | /** |
| 142 | 142 | * Set the Admin Tasks Provider. |
| 143 | 143 | * |
| 144 | 144 | * @return \MyArtJaub\Webtrees\Module\GeoDispersion\Model\TaskProviderInterface |
| 145 | 145 | */ |
| 146 | - public function setProvider(TaskProviderInterface $provider) { |
|
| 147 | - $this->provider = $provider; |
|
| 148 | - } |
|
| 146 | + public function setProvider(TaskProviderInterface $provider) { |
|
| 147 | + $this->provider = $provider; |
|
| 148 | + } |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | \ No newline at end of file |
@@ -34,37 +34,37 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | class AdminConfigController extends MvcController |
| 36 | 36 | { |
| 37 | - /** |
|
| 38 | - * Tasks Provider |
|
| 39 | - * @var TaskProviderInterface $provider |
|
| 40 | - */ |
|
| 41 | - protected $provider; |
|
| 37 | + /** |
|
| 38 | + * Tasks Provider |
|
| 39 | + * @var TaskProviderInterface $provider |
|
| 40 | + */ |
|
| 41 | + protected $provider; |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Constructor for Admin Config controller |
|
| 45 | - * @param \Fisharebest\Webtrees\Module\AbstractModule $module |
|
| 46 | - */ |
|
| 47 | - public function __construct(AbstractModule $module) { |
|
| 48 | - parent::__construct($module); |
|
| 43 | + /** |
|
| 44 | + * Constructor for Admin Config controller |
|
| 45 | + * @param \Fisharebest\Webtrees\Module\AbstractModule $module |
|
| 46 | + */ |
|
| 47 | + public function __construct(AbstractModule $module) { |
|
| 48 | + parent::__construct($module); |
|
| 49 | 49 | |
| 50 | - $this->provider = $this->module->getProvider(); |
|
| 51 | - } |
|
| 50 | + $this->provider = $this->module->getProvider(); |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Pages |
|
| 55 | - */ |
|
| 53 | + /** |
|
| 54 | + * Pages |
|
| 55 | + */ |
|
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * AdminConfig@index |
|
| 59 | - */ |
|
| 60 | - public function index() { |
|
| 61 | - global $WT_TREE; |
|
| 57 | + /** |
|
| 58 | + * AdminConfig@index |
|
| 59 | + */ |
|
| 60 | + public function index() { |
|
| 61 | + global $WT_TREE; |
|
| 62 | 62 | |
| 63 | - Theme::theme(new AdministrationTheme)->init($WT_TREE); |
|
| 64 | - $controller = new PageController(); |
|
| 65 | - $controller |
|
| 66 | - ->restrictAccess(Auth::isAdmin()) |
|
| 67 | - ->setPageTitle($this->module->getTitle()); |
|
| 63 | + Theme::theme(new AdministrationTheme)->init($WT_TREE); |
|
| 64 | + $controller = new PageController(); |
|
| 65 | + $controller |
|
| 66 | + ->restrictAccess(Auth::isAdmin()) |
|
| 67 | + ->setPageTitle($this->module->getTitle()); |
|
| 68 | 68 | |
| 69 | 69 | $token = $this->module->getSetting('MAJ_AT_FORCE_EXEC_TOKEN'); |
| 70 | 70 | if(is_null($token)) { |
@@ -72,11 +72,11 @@ discard block |
||
| 72 | 72 | $this->module->setSetting('PAT_FORCE_EXEC_TOKEN', $token); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - $data = new ViewBag(); |
|
| 76 | - $data->set('title', $controller->getPageTitle()); |
|
| 75 | + $data = new ViewBag(); |
|
| 76 | + $data->set('title', $controller->getPageTitle()); |
|
| 77 | 77 | |
| 78 | - $table_id = 'table-admintasks-' . Uuid::uuid4(); |
|
| 79 | - $data->set('table_id', $table_id); |
|
| 78 | + $table_id = 'table-admintasks-' . Uuid::uuid4(); |
|
| 79 | + $data->set('table_id', $table_id); |
|
| 80 | 80 | |
| 81 | 81 | $data->set('trigger_url_root', WT_BASE_URL.'module.php?mod='.$this->module->getName().'&mod_action=Task@trigger'); |
| 82 | 82 | $token = $this->module->getSetting('MAJ_AT_FORCE_EXEC_TOKEN'); |
@@ -89,9 +89,9 @@ discard block |
||
| 89 | 89 | $this->provider->getInstalledTasks(); |
| 90 | 90 | |
| 91 | 91 | $controller |
| 92 | - ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
| 93 | - ->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL) |
|
| 94 | - ->addInlineJavascript(' |
|
| 92 | + ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
| 93 | + ->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL) |
|
| 94 | + ->addInlineJavascript(' |
|
| 95 | 95 | //Datatable initialisation |
| 96 | 96 | jQuery.fn.dataTableExt.oSort["unicode-asc" ]=function(a,b) {return a.replace(/<[^<]*>/, "").localeCompare(b.replace(/<[^<]*>/, ""))}; |
| 97 | 97 | jQuery.fn.dataTableExt.oSort["unicode-desc" ]=function(a,b) {return b.replace(/<[^<]*>/, "").localeCompare(a.replace(/<[^<]*>/, ""))}; |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | }); |
| 124 | 124 | |
| 125 | 125 | ') |
| 126 | - ->addInlineJavascript(' |
|
| 126 | + ->addInlineJavascript(' |
|
| 127 | 127 | function generate_force_token() { |
| 128 | 128 | jQuery("#bt_genforcetoken").attr("disabled", "disabled"); |
| 129 | 129 | jQuery("#bt_tokentext").empty().html("<i class=\"fa fa-spinner fa-pulse fa-fw\"></i>"); |
@@ -171,56 +171,56 @@ discard block |
||
| 171 | 171 | } |
| 172 | 172 | '); |
| 173 | 173 | |
| 174 | - ViewFactory::make('AdminConfig', $this, $controller, $data)->render(); |
|
| 175 | - } |
|
| 174 | + ViewFactory::make('AdminConfig', $this, $controller, $data)->render(); |
|
| 175 | + } |
|
| 176 | 176 | |
| 177 | - /** |
|
| 178 | - * AdminConfig@jsonTasksList |
|
| 179 | - */ |
|
| 180 | - public function jsonTasksList() { |
|
| 181 | - global $WT_TREE; |
|
| 177 | + /** |
|
| 178 | + * AdminConfig@jsonTasksList |
|
| 179 | + */ |
|
| 180 | + public function jsonTasksList() { |
|
| 181 | + global $WT_TREE; |
|
| 182 | 182 | |
| 183 | - $controller = new JsonController(); |
|
| 184 | - $controller |
|
| 185 | - ->restrictAccess(Auth::isAdmin()); |
|
| 183 | + $controller = new JsonController(); |
|
| 184 | + $controller |
|
| 185 | + ->restrictAccess(Auth::isAdmin()); |
|
| 186 | 186 | |
| 187 | - // Generate an AJAX/JSON response for datatables to load a block of rows |
|
| 188 | - $search = Filter::postArray('search'); |
|
| 189 | - if($search) $search = $search['value']; |
|
| 190 | - $start = Filter::postInteger('start'); |
|
| 191 | - $length = Filter::postInteger('length'); |
|
| 192 | - $order = Filter::postArray('order'); |
|
| 187 | + // Generate an AJAX/JSON response for datatables to load a block of rows |
|
| 188 | + $search = Filter::postArray('search'); |
|
| 189 | + if($search) $search = $search['value']; |
|
| 190 | + $start = Filter::postInteger('start'); |
|
| 191 | + $length = Filter::postInteger('length'); |
|
| 192 | + $order = Filter::postArray('order'); |
|
| 193 | 193 | |
| 194 | 194 | $order_by_name = false; |
| 195 | - foreach($order as $key => &$value) { |
|
| 196 | - switch($value['column']) { |
|
| 197 | - case 3: |
|
| 195 | + foreach($order as $key => &$value) { |
|
| 196 | + switch($value['column']) { |
|
| 197 | + case 3: |
|
| 198 | 198 | $order_by_name = true; |
| 199 | - unset($order[$key]); |
|
| 200 | - break; |
|
| 201 | - case 4; |
|
| 199 | + unset($order[$key]); |
|
| 200 | + break; |
|
| 201 | + case 4; |
|
| 202 | 202 | $value['column'] = 'majat_last_run'; |
| 203 | 203 | break; |
| 204 | 204 | case 4; |
| 205 | 205 | $value['column'] = 'majat_last_result'; |
| 206 | 206 | break; |
| 207 | - default: |
|
| 208 | - unset($order[$key]); |
|
| 209 | - } |
|
| 210 | - } |
|
| 207 | + default: |
|
| 208 | + unset($order[$key]); |
|
| 209 | + } |
|
| 210 | + } |
|
| 211 | 211 | |
| 212 | - $list = $this->provider->getFilteredTasksList($search, $order, $start, $length); |
|
| 212 | + $list = $this->provider->getFilteredTasksList($search, $order, $start, $length); |
|
| 213 | 213 | if($order_by_name) { |
| 214 | 214 | usort($list, function(AbstractTask $a, AbstractTask $b) { return I18N::strcasecmp($a->getTitle(), $b->getTitle()); }); |
| 215 | 215 | } |
| 216 | - $recordsFiltered = count($list); |
|
| 217 | - $recordsTotal = $this->provider->getTasksCount(); |
|
| 216 | + $recordsFiltered = count($list); |
|
| 217 | + $recordsTotal = $this->provider->getTasksCount(); |
|
| 218 | 218 | |
| 219 | - $data = array(); |
|
| 220 | - foreach($list as $task) { |
|
| 221 | - $datum = array(); |
|
| 219 | + $data = array(); |
|
| 220 | + foreach($list as $task) { |
|
| 221 | + $datum = array(); |
|
| 222 | 222 | |
| 223 | - $datum[0] = ' |
|
| 223 | + $datum[0] = ' |
|
| 224 | 224 | <div class="btn-group"> |
| 225 | 225 | <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> |
| 226 | 226 | <i class="fa fa-pencil"></i><span class="caret"></span> |
@@ -238,50 +238,50 @@ discard block |
||
| 238 | 238 | </li> |
| 239 | 239 | </ul> |
| 240 | 240 | </div>'; |
| 241 | - $datum[1] = $task->getName(); |
|
| 242 | - $datum[2] = $task->isEnabled() ? |
|
| 241 | + $datum[1] = $task->getName(); |
|
| 242 | + $datum[2] = $task->isEnabled() ? |
|
| 243 | 243 | '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Enabled').'</span>' : |
| 244 | 244 | '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('Disabled').'</span>'; |
| 245 | - $datum[3] = $task->getTitle(); |
|
| 246 | - $date_format = str_replace('%', '', I18N::dateFormat()) . ' H:i:s'; |
|
| 245 | + $datum[3] = $task->getTitle(); |
|
| 246 | + $date_format = str_replace('%', '', I18N::dateFormat()) . ' H:i:s'; |
|
| 247 | 247 | $datum[4] = $task->getLastUpdated()->format($date_format); |
| 248 | - $datum[5] = $task->isLastRunSuccess() ? |
|
| 248 | + $datum[5] = $task->isLastRunSuccess() ? |
|
| 249 | 249 | '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Yes').'</span>' : |
| 250 | 250 | '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('No').'</span>'; |
| 251 | - $dtF = new \DateTime('@0'); |
|
| 252 | - $dtT = new \DateTime('@' . ($task->getFrequency() * 60)); |
|
| 253 | - $datum[6] = $dtF->diff($dtT)->format(I18N::translate('%a d %h h %i m')); |
|
| 251 | + $dtF = new \DateTime('@0'); |
|
| 252 | + $dtT = new \DateTime('@' . ($task->getFrequency() * 60)); |
|
| 253 | + $datum[6] = $dtF->diff($dtT)->format(I18N::translate('%a d %h h %i m')); |
|
| 254 | 254 | $datum[7] = $task->getRemainingOccurrences() > 0 ? I18N::number($task->getRemainingOccurrences()) : I18N::translate('Unlimited'); |
| 255 | 255 | $datum[8] = $task->isRunning() ? |
| 256 | 256 | '<i class="fa fa-cog fa-spin fa-fw"></i><span class="sr-only">'.I18N::translate('Running').'</span>' : |
| 257 | 257 | '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('Not running').'</span>'; |
| 258 | 258 | if($task->isEnabled() && !$task->isRunning()) { |
| 259 | - $datum[9] = ' |
|
| 259 | + $datum[9] = ' |
|
| 260 | 260 | <button id="bt_runtask_'. $task->getName() .'" class="btn btn-primary" href="#" onclick="return run_admintask(\''. $task->getName() .'\')"> |
| 261 | 261 | <div id="bt_runtasktext_'. $task->getName() .'"><i class="fa fa-cog fa-fw" ></i>' . I18N::translate('Run') . '</div> |
| 262 | 262 | </button>'; |
| 263 | 263 | } |
| 264 | 264 | else { |
| 265 | - $datum[9] = ''; |
|
| 265 | + $datum[9] = ''; |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - $data[] = $datum; |
|
| 269 | - } |
|
| 268 | + $data[] = $datum; |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - $controller->pageHeader(); |
|
| 271 | + $controller->pageHeader(); |
|
| 272 | 272 | |
| 273 | - echo \Zend_Json::encode(array( |
|
| 274 | - 'draw' => Filter::getInteger('draw'), |
|
| 275 | - 'recordsTotal' => $recordsTotal, |
|
| 276 | - 'recordsFiltered' => $recordsFiltered, |
|
| 277 | - 'data' => $data |
|
| 278 | - )); |
|
| 273 | + echo \Zend_Json::encode(array( |
|
| 274 | + 'draw' => Filter::getInteger('draw'), |
|
| 275 | + 'recordsTotal' => $recordsTotal, |
|
| 276 | + 'recordsFiltered' => $recordsFiltered, |
|
| 277 | + 'data' => $data |
|
| 278 | + )); |
|
| 279 | 279 | |
| 280 | - } |
|
| 280 | + } |
|
| 281 | 281 | |
| 282 | 282 | /** |
| 283 | 283 | * AdminConfig@generateToken |
| 284 | - * |
|
| 284 | + * |
|
| 285 | 285 | * Ajax call to generate a new token. Display the token, if generated. |
| 286 | 286 | * Tokens call only be generated by a site administrator. |
| 287 | 287 | * |