code711/code711-housekeeping

Keep track of your TYPO3 versions by checking your git-repositories (gitlab for now). You can then see the results on your TYPO3 Dashboard. It is of course checked against the currently available latest TYPO3 version, keeping you updated on what needs to be updated.

Installs: 113

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:typo3-cms-extension

3.4.0 2024-01-04 17:28 UTC

This package is auto-updated.

Last update: 2024-10-30 12:35:53 UTC


README

Latest Stable Version TYPO3 12 Total Downloads Monthly Downloads

Keep track of your TYPO3 versions by checking your git-repositories (gitlab for now). You can then see the results on your TYPO3 Dashboard. It is of course checked against the currently available latest TYPO3 version, keeping you updated on what needs to be updated.

Note that this version no longer supports API calls with the code711_api extension. Use the 2.x version instead which is also available for TYPO3 12.x.

You need for this:

  • Install extension code711_housekeeping
  • Add your groups and projects as records
  • Configure and add your project widget to the dashboard

Installation

Install it via composer req code711/code711-housekeeping.

Activate the extension.

Groups and projects

Add a new record Housekeeping: Project in list module.

Optionally you can also add one or more Housekeeping: Group to group your projects in different responsibilities or views.

Auto update

With this feature it is possible to fetch the fields marked in the above table when saving a project record.

Auto update is available when:

  • You have a GIT repository with personal access token available

Configure dashboard

The widget is available right away but you might like to override it with some custom values. Or even copy the hole widget configuration to add another one with different options.

An example to override just some values could look like this:

services:
    dashboard.widget.projects:
        class: 'Code711\Code711Housekeeping\Widgets\ProjectsWidget'
        arguments:
            $view: '@dashboard.views.widget'
            $options:
                groups:
                    - mygroupx
                    - mygroupy
                sorting:
                    - 'severity desc'
                    - 'version asc'
                    - 'title asc'
        tags:
            - name: dashboard.widget
              identifier: 'projects'
              groupNames: 'general'
              title: 'My own widget title'
              description: 'LLL:EXT:code711_housekeeping/Resources/Private/Language/locallang.xlf:widgets.projects.description'
              iconIdentifier: 'content-widget-text'
              height: 'large'
              width: 'large'

Remember to clear the cache in the install tool when changing Service.yaml.

Groups

Using option groups you are able to pick projects of a special group.

Sorting

All project fields are sortable for dashboard view. Has to be fieldname order each.

Changelog

3.4.0

  • [FEATURE] add new widget for extensions
  • [FEATURE] add new widgets php version
  • [TASK] update licence header
  • [TASK] add licence + update readme
  • [FEATURE] add php version to dashboard