PHPackages                             brookinsconsulting/ezpcontenttreereport - 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. [Admin Panels](/categories/admin)
4. /
5. brookinsconsulting/ezpcontenttreereport

ActiveEzpublish-legacy-extension[Admin Panels](/categories/admin)

brookinsconsulting/ezpcontenttreereport
=======================================

eZ Publish Legacy extension which provides a flexible solution which provides a quick and simple report of content tree content objects content in csv format. Great for admin reports!

061PHP

Since Jul 9Pushed 9y ago1 watchersCompare

[ Source](https://github.com/brookinsconsulting/ezpcontenttreereport)[ Packagist](https://packagist.org/packages/brookinsconsulting/ezpcontenttreereport)[ RSS](/packages/brookinsconsulting-ezpcontenttreereport/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

eZp Content Tree Report
=======================

[](#ezp-content-tree-report)

This extension which provides a flexible solution which provides a quick and simple report of content tree content objects content in csv format.

Version
=======

[](#version)

- The current version of eZp Content Tree Report is 0.1.4
- Last Major update: June 06, 2015

Copyright
=========

[](#copyright)

- eZp Content Tree Report is copyright 1999 - 2016 Brookins Consulting and 2013 - 2016 Think Creative
- See: [COPYRIGHT.md](COPYRIGHT.md) for more information on the terms of the copyright and license

License
=======

[](#license)

eZp Content Tree Report is licensed under the GNU General Public License.

The complete license agreement is included in the [LICENSE](LICENSE) file.

eZp Content Tree Report is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License or at your option a later version.

eZp Content Tree Report is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

The GNU GPL gives you the right to use, modify and redistribute eZp Content Tree Report under certain conditions. The GNU GPL license is distributed with the software, see the file doc/LICENSE.

It is also available at

You should have received a copy of the GNU General Public License along with eZp Content Tree Report in doc/LICENSE. If not, see .

Using eZp Content Tree Report under the terms of the GNU GPL is free (as in freedom).

For more information or questions please contact:

Requirements
============

[](#requirements)

The following requirements exists for using eZp Content Tree Report extension:

### eZ Publish version

[](#ez-publish-version)

- Make sure you use eZ Publish version 5.x (required) or higher.
- Designed and tested with eZ Publish Platform 5.4

### PHP version

[](#php-version)

- Make sure you have PHP 5.x or higher.

Features
========

[](#features)

This solution provides the following features:

- Command line script
- Cronjob
- Module view

Dependencies
============

[](#dependencies)

This solution depends on eZ Publish Legacy only

Installation
============

[](#installation)

### Bundle Installation via Composer

[](#bundle-installation-via-composer)

Run the following command from your project root to install the bundle:

```
bash$ composer require brookinsconsulting/ezpcontenttreereport dev-master;

```

### Extension Activation

[](#extension-activation)

Activate this extension by adding the following to your `settings/override/site.ini.append.php`:

```
[ExtensionSettings]
#
ActiveExtensions[]=ezpcontenttreereport

```

### Clear the caches

[](#clear-the-caches)

Clear eZ Publish Platform / eZ Publish Legacy caches (Required).

```
php ./bin/php/ezcache.php --clear-all;

```

Settings Customization
======================

[](#settings-customization)

This extension provides a number of settings which affect the report generation process.

First create a settings override (global, siteaccess or extension) of file `ezpcontenttreereport.ini.append.php`.

Then customize the settings as required.

Required settings
-----------------

[](#required-settings)

This solution only requires one setting be customized, `AdminUserSiteAccessName`.

You are required to set your admin siteaccess name within the `AdminUserSiteAccessName` setting variable.

This is required because the solution uses this content to run the report generation using the admin siteaccess scope which again is required for the entire solution to work correctly.

Optional settings
-----------------

[](#optional-settings)

You can customize the Content Tree Nodes to include in the report by configuring the `ContentTreeNodeIDs[]` setting array content.

You can exclude content tree subtrees from the report by configuring the `ExcludedParentNodeIDs[]` setting array content.

You can include or exclude content classes by configuring the `ClassFilterType` setting variable and `ClassFilterArray[]` setting array content.

You can exclude hidden nodes from the report by configuring the `ExcludeHiddenNodes` setting variable.

You can customize the report generated to include additional custom configured content object attribute content by configuring the `ContentObjectAttributes[]` setting array content.

Here is a simple example of the format expected / required for use within the `ContentObjectAttributes[]` setting array content:

```
ContentObjectAttributes[]=class_identifier;class_attribute_identifier;datatype_attribute_identifier;CSV Header Text Description

```

Here are a few example usages of the `ContentObjectAttributes[]` setting array content:

```
ContentObjectAttributes[]=folder;forward;content;Forward to Legacy / DocStudio
ContentObjectAttributes[]=folder;forwarding_path;content;DocStudio Forwarding Path
ContentObjectAttributes[]=file;file;original_filename;File Filename
ContentObjectAttributes[]=image;image;original_filename;Image Filename

```

Note: Content class, Content class attribute and Datatype attribute identifiers must only be lower case but the CSV Header Text Description can be in mixed case (and probably should be since the rest of the csv header fields also used First char upper case mixed case text strings).

### `ContentObjectAttributes[]` Attribute usage reference documentation

[](#contentobjectattributes-attribute-usage-reference-documentation)

You can use any attribute / datatype possible using this settings.

Here is some documentation related to the usage of the above settings values within the content objects and datatypes (re: identifiers).

-
-
-
-
-
-

Usage
=====

[](#usage)

The solution is configured to work virtually by default once properly installed.

Usage - Command line script
===========================

[](#usage---command-line-script)

Note: This script must be run using **only** the admin siteaccess!

Change directory into eZ Publish website document root:

```
cd path/to/ezpublish/ezpublish_legacy/;

```

Run the script to generate the report

```
php ./extension/ezpcontenttreereport/bin/php/ezpcontenttreereport.php -s site_admin;

```

Review generated report in LibreOffice as a spreadsheet:

```
less var/site/cache/ezpcontenttreereport_-_2015_06_06_-_09_02_43.csv;

```

Usage - Cronjob
===============

[](#usage---cronjob)

Change directory into eZ Publish website document root:

```
cd path/to/ezpublish/ezpublish_legacy/;

```

Run the cronjob manually to generate the report

```
php ./runcronjobs.php ezpcontenttreereportgenerate;

```

Review generated report in LibreOffice as a spreadsheet:

```
less var/site/cache/ezpcontenttreereport_-_2015_06_06_-_09_02_43.csv;

```

Usage - Module
==============

[](#usage---module)

The module view is optional but often the default way content editor admins use this solution

The module view can be used for simple regeneration of report and downloading of report

Access the module view using the following uri

Troubleshooting
===============

[](#troubleshooting)

### Read the FAQ

[](#read-the-faq)

Some problems are more common than others. The most common ones are listed in the the [doc/FAQ.md](doc/FAQ.md)

### Support

[](#support)

If you have find any problems not handled by this document or the FAQ you can contact Brookins Consulting through the support system:

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

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

---

Top Contributors

[![brookinsconsulting](https://avatars.githubusercontent.com/u/617031?v=4)](https://github.com/brookinsconsulting "brookinsconsulting (3 commits)")

---

Tags

admincontent-treeezpublishezpublishlegacymodulereportreporting

### Embed Badge

![Health badge](/badges/brookinsconsulting-ezpcontenttreereport/health.svg)

```
[![Health](https://phpackages.com/badges/brookinsconsulting-ezpcontenttreereport/health.svg)](https://phpackages.com/packages/brookinsconsulting-ezpcontenttreereport)
```

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[dmstr/yii2-adminlte-asset

AdminLTE backend theme asset bundle for Yii 2.0 Framework

1.1k1.8M67](/packages/dmstr-yii2-adminlte-asset)[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[filament/spatie-laravel-media-library-plugin

Filament support for `spatie/laravel-medialibrary`.

1764.8M125](/packages/filament-spatie-laravel-media-library-plugin)[bezhansalleh/filament-exceptions

A Simple &amp; Beautiful Pluggable Exception Viewer for FilamentPHP's Admin Panel

193195.9k13](/packages/bezhansalleh-filament-exceptions)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1220.8M36](/packages/filament-infolists)

PHPackages © 2026

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