定制 danielss89/zfc-user-admin 二次开发

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

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

danielss89/zfc-user-admin

Composer 安装命令:

composer require danielss89/zfc-user-admin

包简介

An administration interface for ZfcUser.

关键字:

README 文档

README

Version 0.1

Introduction

This module provides an interface to create/edit/delete users.

Installation

Using composer

  1. Add danielss89/zfc-user-admin (version dev-master) to requirements
  2. Run update command on composer

Manually

  1. Clone this project into your ./vendor/ directory and enable it in your application.config.php file.
  2. Clone https://github.com/juriansluiman/ZfcAdmin into your ./vendor/ directory and enable it in your application.config.php file.

Requires

  1. ZfcAdmin
  2. ZfcUser

Usage

Override default module config

Copy <zfc-user-admin>/config/ZfcUserAdmin.global.php.dist to <project root>/autoload/ZfcUserAdmin.global.php and edit required module options (full list will be added to doc later, for now you can find all available options in <zfc-user-admin>/src/Options/ModuleOptions.php - just look at class properties and convert upper case to dash plus lower case, e.g. createUserAutoPassword -> create_user_auto_password). E.g.:

<?php
/**
 * ZfcUserAdmin Configuration
 */
$settings = array(
    'user_mapper' => 'ZfcUserAdmin\Mapper\UserZendDb',
    'user_list_elements' => array('Id' => 'id', 'Name' => 'display_name', 'Email address' => 'email'),
    'create_user_auto_password' => false,
    ...
);

/**
 * You do not need to edit below this line
 */
return array(
    'zfcuseradmin' => $settings
);

TODO: add more usage information and module options list

Authors

统计信息

  • 总下载量: 19.62k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 37
  • 点击次数: 0
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 36
  • Watchers: 14
  • Forks: 43
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2013-04-25