PHPackages                             hudhaifas/silverstripe-dataobject-manager - 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. hudhaifas/silverstripe-dataobject-manager

ActiveSilverstripe-vendormodule[Utility &amp; Helpers](/categories/utility)

hudhaifas/silverstripe-dataobject-manager
=========================================

Wrap any Silverstripe DataObject in a page.

5.1.4.9(10mo ago)21.7k6MITLess

Since Apr 10Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/hudhaifas/silverstripe-dataobject-manager)[ Packagist](https://packagist.org/packages/hudhaifas/silverstripe-dataobject-manager)[ Docs](https://github.com/hudhaifas/silverstripe-dataobject-manager)[ RSS](/packages/hudhaifas-silverstripe-dataobject-manager/feed)WikiDiscussions master Synced today

READMEChangelog (9)Dependencies (4)Versions (19)Used By (6)

SilverStripe DataObject Manager
-------------------------------

[](#silverstripe-dataobject-manager)

[![Latest Stable Version](https://camo.githubusercontent.com/f58b8aa34ee554042389898ea9e27610b17400616545a920544da0dc8940a4b4/68747470733a2f2f706f7365722e707567782e6f72672f6875646861696661732f73696c7665727374726970652d646174616f626a6563742d6d616e616765722f762f737461626c65)](https://packagist.org/packages/hudhaifas/silverstripe-dataobject-manager) [![Total Downloads](https://camo.githubusercontent.com/960287bf1730d39d170a7a7909f273c73d3562e5ddd96aaf8d77dd9f489335d8/68747470733a2f2f706f7365722e707567782e6f72672f6875646861696661732f73696c7665727374726970652d646174616f626a6563742d6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/hudhaifas/silverstripe-dataobject-manager) [![Latest Unstable Version](https://camo.githubusercontent.com/fa3f5db6deb14ac1df2c38161626c06f987e112b48dd6ee1aa9aacb1838fa5bb/68747470733a2f2f706f7365722e707567782e6f72672f6875646861696661732f73696c7665727374726970652d646174616f626a6563742d6d616e616765722f762f756e737461626c65)](https://packagist.org/packages/hudhaifas/silverstripe-dataobject-manager) [![License](https://camo.githubusercontent.com/7e78c8d3761e39a85972c59f9226214f26327859bac58717fedd04046c8661cb/68747470733a2f2f706f7365722e707567782e6f72672f6875646861696661732f73696c7665727374726970652d646174616f626a6563742d6d616e616765722f6c6963656e7365)](https://packagist.org/packages/hudhaifas/silverstripe-dataobject-manager)

DataObject Manager is a standard Fronend wapper fot a certain DataObject instances without relationship with a Page, results to list all, search, show object, and edit obejct.

### [Live Demo](http://dom.hudhaifa.com/)

[](#live-demo)

### Screenshots

[](#screenshots)

- List Objects [![](https://user-images.githubusercontent.com/5335447/34019586-54a8a386-e0f5-11e7-9121-5ea2fcc5f94f.jpg)](https://user-images.githubusercontent.com/5335447/34019586-54a8a386-e0f5-11e7-9121-5ea2fcc5f94f.jpg)
- Show Object [![](https://user-images.githubusercontent.com/5335447/34019159-1afe0b3c-e0f3-11e7-860a-b96e6570cf2d.jpg)](https://user-images.githubusercontent.com/5335447/34019159-1afe0b3c-e0f3-11e7-860a-b96e6570cf2d.jpg)
- Edit Object [![](https://user-images.githubusercontent.com/5335447/34019776-1594ae8c-e0f6-11e7-819b-c22c61092cde.jpg)](https://user-images.githubusercontent.com/5335447/34019776-1594ae8c-e0f6-11e7-819b-c22c61092cde.jpg)

### Features

[](#features)

- Manage a certain DataObject without a relationship with a Page.
- Create a standard Page to show, edit, list, and search for a certain DataObject type.
- Include RichSnippets to the object show page.
- Decrease the response time by using AJAX to load the page content after the page layout is completely loaded to .
- Compatible with Google Custom Search.
- Easy to customize the page layout.

### Limitations

[](#limitations)

- Create a Page class for each DataObject.
- Edit Only $db and $has\_one fields.

### Todos

[](#todos)

- Edit many\_many relationship fields.
- Add create new function from the frontend.
- Waiting for your contributions

Usage
-----

[](#usage)

### Requirements

[](#requirements)

- SilverStripe Framework 4.x
- SilverStripe CMS 4.x
- jQuery 3.x
- Bootstrap 4.x

### Installation

[](#installation)

- Install the module through composer: `$ composer require hudhaifas/silverstripe-dataobject-manager`
- Run dev/build

Usage
-----

[](#usage-1)

### ManageableDataObject

[](#manageabledataobject)

- Create / Adjust a class to extend DataObject and implement ManageableDataObject interface to provide the following required data to render your object:

FunctionDocumentationDefault`getObjectItem()`Renders object as a list item`return $this->renderWith('List_Item');``getObjectTitle()`The object title or name`return $this->getTitle();``getObjectLink()`The link to show the object`return $this->renderWith('List_Item');``getObjectEditLink()`The link to edit the object`return $this->renderWith('List_Item');``getObjectImage()`Image of the object`return $this->Image();``getObjectDefaultImage()`Default image for objects with no image`return "path/to/images/image.jpg";``getObjectSummary()`Summary data of the object could be array(Title=&gt;Content) or rendered object`return array();``getObjectNav()`Extra nav bar`getObjectRelated()`List of related objects`getObjectTabs()`Object's details and content returned in an array(Title=&gt;Content), the content could be text or rendered object- Create / Adjust Page to extend DataObjectPage

FunctionDocumentationRequired`getObjectsList()`List of all eligible objectsRequired`restrictFields()`Excluded fields from editOptional`searchObjects()`Filter objects based on the gived keywordOptional`getFiltersList()`Not implemented yetNot Required### License

[](#license)

```
MIT License

Copyright (c) 2016 Hudhaifa Shatnawi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions
of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT,  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

```

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance54

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity72

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~155 days

Recently: every ~4 days

Total

18

Last Release

309d ago

Major Versions

3.0 → 4.02018-06-29

4.2.1 → 5.02025-04-25

### Community

Maintainers

![](https://www.gravatar.com/avatar/2b63db0734b5a637e6eb015db44fa334a181f5e0ed8e776ab57d0232dbfc3944?d=identicon)[hudhaifas](/maintainers/hudhaifas)

---

Top Contributors

[![hudhaifas](https://avatars.githubusercontent.com/u/5335447?v=4)](https://github.com/hudhaifas "hudhaifas (204 commits)")

---

Tags

pagesilverstripedataobject

### Embed Badge

![Health badge](/badges/hudhaifas-silverstripe-dataobject-manager/health.svg)

```
[![Health](https://phpackages.com/badges/hudhaifas-silverstripe-dataobject-manager/health.svg)](https://phpackages.com/packages/hudhaifas-silverstripe-dataobject-manager)
```

PHPackages © 2026

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