定制 se7enxweb/sevenx_dse 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

se7enxweb/sevenx_dse

Composer 安装命令:

composer require se7enxweb/sevenx_dse

包简介

sevenx_dse : 7x Database Source Editor — embeds AdminNeo as a direct database source editor inside the eZ Publish / Exponential Platform Legacy admin UI — providing raw SQL, table browsing, import/export, and multi-driver support (MySQL, SQLite) through a scoped, permission-gated interface.

README 文档

README

PHP Platform License: GPL v2 GitHub issues

sevenx_dse is a downstream fork of AdminNeo embedded as a native eZ Publish Legacy extension — delivering raw SQL access, table browsing, schema inspection, import/export, and multi-driver database support (MySQL, SQLite, PostgreSQL) directly inside the Exponential Platform Legacy admin interface, scoped behind eZ Publish role-based permissions.

Screenshots

Screenshot 2026-04-21 at 19-25-52 Database Source Editor - 7x Alpha Screenshot 2026-04-21 at 19-11-23 Database Source Editor - 7x Alpha Screenshot 2026-04-21 at 19-12-16 Database Source Editor - 7x Alpha Screenshot 2026-04-21 at 19-26-04 Database Source Editor - 7x Alpha

Table of Contents

  1. Project Notice
  2. Project Status
  3. Who is 7x
  4. What is sevenx_dse?
  5. Technology Stack
  6. Requirements
  7. Installation
  8. Main Features
  9. Issue Tracker
  10. Where to Get More Help
  11. How to Contribute
  12. Credits
  13. Copyright
  14. License

Project Notice

"Please Note: This project is not associated with the original eZ Publish software or its original developer, eZ Systems."

sevenx_dse is an independent, 7x-driven extension for Exponential (100% eZ Publish Compatible). It embeds AdminNeo — a downstream fork of the original Adminer database tool — as a fully integrated module inside the legacy admin UI. The extension is stewarded by 7x (se7enx.com).

Project Status

sevenx_dse 1.0.x is the current stable release line.

The extension is under active development targeting Exponential Platform Legacy 6.x / eZ Publish 5.x with PHP 8.3+. Ongoing work focuses on:

  • Stable embedding of AdminNeo 5.x inside the eZ Publish admin3 design
  • Multi-driver support: MySQL/MariaDB, SQLite, PostgreSQL
  • Session-safe gate and CSRF-protected database switching
  • CSS isolation to prevent AdminNeo global styles from damaging eZ admin chrome
  • Export/download passthrough without eZ template wrapping
  • PHP 8.3 and 8.5 compatibility

Who is 7x

7x is the North American corporation driving the continued general use, support, development, hosting, and design of Exponential Platform Legacy Enterprise Open Source Content Management System.

7x has been in business supporting Exponential Platform website customers and projects for over 24 years. Previously before 2022, 7x was called Brookins Consulting.

7x offers:

  • Commercial support subscriptions for Exponential Platform Legacy deployments
  • Hosting on the Exponential Platform cloud infrastructure (exponential.earth)
  • Custom development, migrations, upgrades, and training
  • Community stewardship via share.exponential.earth

What is sevenx_dse?

sevenx_dse is a direct database source editor for Exponential Platform Legacy. It embeds the full AdminNeo database UI as a native eZ Publish module, accessible at /dse/dashboard inside the eZ admin interface.

What Does sevenx_dse Provide?

  • Raw SQL execution — run arbitrary queries against the live database
  • Table browsing — browse, filter, sort, and paginate table rows
  • Schema inspection — view table structure, indexes, foreign keys
  • Data import/export — SQL dump, CSV, TSV export and import with direct download passthrough (no eZ template wrapping)
  • Multi-driver support — MySQL/MariaDB, SQLite, PostgreSQL
  • Safety gate — mandatory disclaimer + backup acknowledgement screen on every bare access
  • CSRF-protected database switching — "Change database" link uses a per-session token
  • Session-aware — preserves AdminNeo server sessions ($_SESSION['pwds']) across gate acknowledgement
  • Permission-gated — access controlled by eZ Publish role policy (dse/dashboard)
  • CSS-isolated — AdminNeo's global stylesheet rules are neutralised so they cannot damage eZ admin chrome

Access URL

/dse/dashboard

Technology Stack

Component Value
Language PHP 8.3+
CMS Core Exponential Platform Legacy (eZ Publish 5.x / 6.x)
Embedded DB UI AdminNeo 5.3-dev (downstream fork)
Admin Design admin3 (eZ Publish Legacy)
Supported Databases MySQL 8.0+ · MariaDB 10.3+ · PostgreSQL 14+ · SQLite 3.35+
Dependency Mgmt Composer 2.x

Requirements

  • PHP 8.3+ (PHP 8.3 or 8.5 recommended)
  • Exponential Platform Legacy 6.x (eZ Publish 5.x or higher)
  • A supported database: MySQL 8.0+, MariaDB 10.3+, PostgreSQL 14+, or SQLite 3.35+
  • Composer 2.x

Installation

Via Composer

composer require se7enxweb/sevenx_dse

Manual

  1. Copy the sevenx_dse directory into your extension/ folder.
  2. Activate the extension in settings/override/site.ini.append.php:
[ExtensionSettings]
ActiveExtensions[]=sevenx_dse
  1. Regenerate autoloads:
php bin/php/ezpgenerateautoloads.php
  1. Clear caches via the admin interface or:
php bin/php/ezcache.php --clear-all
  1. Assign the dse/dashboard policy to the roles that should have access.

Main Features

  • Embedded AdminNeo 5.x database UI inside eZ Publish admin3 design
  • Raw SQL editor with syntax highlighting (JUSH)
  • Table list, row browsing, filtering, sorting, pagination
  • Schema editor: create/alter/drop tables, columns, indexes
  • Import: SQL, CSV, TSV
  • Export: SQL dump, CSV, TSV — direct file download (bypasses eZ template)
  • Multi-driver: MySQL/MariaDB, SQLite, PostgreSQL
  • Safety gate with mandatory backup acknowledgement on every bare GET
  • Session-based "return to last database" without storing URLs
  • CSRF token on "Change database" link (dse_switch)
  • AdminNeo server password sessions preserved across gate
  • CSS repair block isolating AdminNeo global styles from eZ admin chrome

Issue Tracker

Submitting bugs, improvements, and stories is possible on https://github.com/se7enxweb/sevenx_dse/issues

If you discover a security issue, please responsibly report it via email to security@exponential.earth

Where to Get More Help

Resource URL
Platform Website platform.exponential.earth
Documentation Hub doc.exponential.earth
Community Forums share.exponential.earth
GitHub Organisation github.com/se7enxweb
This Repository github.com/se7enxweb/sevenx_dse
Issue Tracker Issues
7x Corporate se7enx.com
Support Subscriptions support.exponential.earth
Sponsor 7x sponsor.se7enx.com

How to Contribute

Everyone is encouraged to contribute to the development of new features and bugfixes for sevenx_dse.

  1. Fork the repository: github.com/se7enxweb/sevenx_dse
  2. Clone your fork and create a feature branch: git checkout -b feature/my-improvement
  3. Make your changes
  4. Push your branch and open a Pull Request against main
  5. Participate in the review

Bug reports, feature requests, and discussion are all welcome via the issue tracker.

Credits

sevenx_dse is a downstream fork and embedding of AdminNeo, which is itself a fork of Adminer.

Credit Person / Organisation
AdminNeo — embedded database UI core AdminNeo Project
AdminNeo original author Jakub Vrána
Adminer — upstream original Jakub Vrána
sevenx_dse extension — eZ Publish integration 7x (se7enx.com)
Exponential Platform Legacy 7x (se7enx.com) + community

We are deeply grateful to Jakub Vrána for creating and maintaining Adminer and AdminNeo — the core database UI that makes this extension possible.

Copyright

Copyright (C) 1998 - 2026 7x. All rights reserved.

AdminNeo and Adminer are copyright their respective authors. See AdminNeo for full credits.

License

sevenx_dse is licensed under the GNU General Public License v2 (or any later version).

sevenx_dse 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) any later version.

sevenx_dse 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 full license text is available at https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

Copyright © 1998 – 2026 7x (se7enx.com). All rights reserved unless otherwise noted.

se7enxweb/sevenx_dse 适用场景与选型建议

se7enxweb/sevenx_dse 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 1, 最近一次更新时间为 2026 年 04 月 21 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「sql」 「mysql」 「module」 「sqlite」 「view」 「postgresql」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 se7enxweb/sevenx_dse 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 se7enxweb/sevenx_dse 我们能提供哪些服务?
定制开发 / 二次开发

基于 se7enxweb/sevenx_dse 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 3
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 39
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-2.0-or-later
  • 更新时间: 2026-04-21