PHPackages                             vivomedia/neos-simple-table - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. vivomedia/neos-simple-table

ActiveNeos-plugin[Utility &amp; Helpers](/categories/utility)

vivomedia/neos-simple-table
===========================

Simple Html-Table NodeType for Neos CMS

3.1.0(2y ago)12.2k1[1 issues](https://github.com/VIVOMEDIA/neos-simple-table/issues)MITPHP

Since Sep 21Pushed 2y ago2 watchersCompare

[ Source](https://github.com/VIVOMEDIA/neos-simple-table)[ Packagist](https://packagist.org/packages/vivomedia/neos-simple-table)[ RSS](/packages/vivomedia-neos-simple-table/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (16)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/bc2846d66a03e96af4de22a3bb90e8d4d280d345f5cbac0894fa0153bdc76840/68747470733a2f2f706f7365722e707567782e6f72672f7669766f6d656469612f6e656f732d73696d706c652d7461626c652f762f737461626c65)](https://packagist.org/packages/vivomedia/neos-simple-table)[![Total Downloads](https://camo.githubusercontent.com/89f0b485e56c1e7bd738668d0d348fa43d2fa6b68711652e2d3b62c5b20d0f16/68747470733a2f2f706f7365722e707567782e6f72672f7669766f6d656469612f6e656f732d73696d706c652d7461626c652f646f776e6c6f616473)](https://packagist.org/packages/vivomedia/neos-simple-table)[![License](https://camo.githubusercontent.com/a186c2a8b27ed782c284cc4479afc0d47ece0e32f7fab73745ebce226952d0fd/68747470733a2f2f706f7365722e707567782e6f72672f7669766f6d656469612f6e656f732d73696d706c652d7461626c652f6c6963656e7365)](https://packagist.org/packages/vivomedia/neos-simple-table)[![Maintainability](https://camo.githubusercontent.com/91d483eb9620b83d5b8c8ed34056afbfdacd080855c844a32c93465c8d26e69e/68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f64316332663739366634306132633563386562392f6d61696e7461696e6162696c697479)](https://codeclimate.com/github/vivomedia-de/neos-simple-table/maintainability)

VIVOMEDIA Neos-Simple-Table
===========================

[](#vivomedia-neos-simple-table)

Simple Html-Table NodeType for Neos CMS.

What it provides
----------------

[](#what-it-provides)

Easily adding a Table-NodeType in Neos CMS.

At the moment you can provide the data as **CSV string**. This will be parsed and rendered as HTML-Table.

Choose if a header row and/or a highlight column needs to be rendered.

Install
=======

[](#install)

Install via composer

```
composer require vivomedia/neos-simple-table
```

Usage
=====

[](#usage)

Just add well formated Csv with semicolon (;) as delimiter into the data-field of the inspector. Choose if your data contains any header data and if you need the first column highlighted. Also you may add a caption for your table.

Extend
======

[](#extend)

Add attributes to result table
------------------------------

[](#add-attributes-to-result-table)

### Add classes to table

[](#add-classes-to-table)

```
prototype(VIVOMEDIA.SimpleTable:HtmlTable) {
  attributes.class {
    table = 'table'
    striped = 'table-striped'
  }
}

```

### Add classes to head

[](#add-classes-to-head)

```
prototype(VIVOMEDIA.SimpleTable:HtmlTableHead) {
  attributes.class {
    something = 'something-special'
  }
}

```

Render icons or something other special into the cell
-----------------------------------------------------

[](#render-icons-or-something-other-special-into-the-cell)

You can add some self-defined placeholders and replace them in your custom Fusion. For example replace all `{true}` or `{false}` keywords with an icon:

```
prototype(VIVOMEDIA.SimpleTable:HtmlTableColumn) {

  content {

    isTrue {
      condition = ${item == '{true}'}
      renderer = Neos.Fusion:Tag) {
        tagName = 'img'
        attributes.src = Neos.Fusion:ResourceUri {
          path = 'resource://VIVOMEDIA.SitePackage/Public/icons/checked.svg'
        }
      }
    }

    isFalse {
      condition = ${item == '{false}'}
      renderer = Neos.Fusion:Tag) {
        tagName = 'img'
        attributes.src = Neos.Fusion:ResourceUri {
          path = 'resource://VIVOMEDIA.SitePackage/Public/icons/unchecked.svg'
        }
      }
    }
  }

```

Screenshots
===========

[](#screenshots)

[![Inspector](/Docs/screenshot_inspector.png?raw=true "Inspector")](/Docs/screenshot_inspector.png?raw=true)[![Resulting table](/Docs/screenshot_result.png?raw=true "Resulting table")](/Docs/screenshot_result.png?raw=true)

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 91.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~188 days

Recently: every ~335 days

Total

15

Last Release

877d ago

Major Versions

0.3 → 2.0.02017-06-29

1.0.x-dev → 2.1.02017-11-27

2.3.0 → 3.0.02022-03-11

### Community

Maintainers

![](https://www.gravatar.com/avatar/a003ae6bea3612ba71a5d5e34478807946dc4a073893c6e7897648095bf4440d?d=identicon)[dlubitz](/maintainers/dlubitz)

---

Top Contributors

[![dlubitz](https://avatars.githubusercontent.com/u/13046100?v=4)](https://github.com/dlubitz "dlubitz (31 commits)")[![jonnitto](https://avatars.githubusercontent.com/u/4510166?v=4)](https://github.com/jonnitto "jonnitto (3 commits)")

### Embed Badge

![Health badge](/badges/vivomedia-neos-simple-table/health.svg)

```
[![Health](https://phpackages.com/badges/vivomedia-neos-simple-table/health.svg)](https://phpackages.com/packages/vivomedia-neos-simple-table)
```

###  Alternatives

[sitegeist/monocle

An living-styleguide for Neos that is based on the actual fusion-code

45315.9k10](/packages/sitegeist-monocle)[sitegeist/kaleidoscope

Responsive-images for Neos

29352.4k10](/packages/sitegeist-kaleidoscope)[flowpack/listable

Tiny extension for listing things

35209.0k7](/packages/flowpack-listable)[kaufmanndigital/gdpr-cookieconsent

A ready-to-run package, that integrates an advanced cookie consent banner into your Neos CMS site.

2540.7k](/packages/kaufmanndigital-gdpr-cookieconsent)[neos/seo

SEO configuration and tools for Neos

13990.5k24](/packages/neos-seo)[shel/neos-colorpicker

A plugin for Neos CMS which provides a colorpicker editor

1494.4k6](/packages/shel-neos-colorpicker)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
