eye4web / zfc-user-settings
Adds settings functionality to ZfcUser
Installs: 20 611
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 5
Forks: 4
Open Issues: 3
Requires
- php: >=5.4
- zf-commons/zfc-user: ~1.2
- zf-commons/zfc-user-doctrine-orm: 1.*
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- phpunit/phpunit: ~4.0.0
- squizlabs/php_codesniffer: ~2.0.0@DEV
This package is not auto-updated.
Last update: 2024-11-06 14:33:43 UTC
README
Introduction
This adds user settings to ZfcUser. Examples of user settings could be:
- Does the user want newsletter
- Favourite color
- Show profile picture
- Whatever you want
Note: This module does not give the user the functionality to edit his/her settings. You have to add that functionality yourself. The reason for this is that a setting could be a input, radio, checkbox, select, etc. So instead of taking all this into account and creating some crazy code, you have to do it yourself.
Installation
With composer
-
Add this project composer.json:
"require": { "eye4web/zfc-user-settings": "dev-master" }
-
Now tell composer to download the module by running the command:
$ php composer.phar update
-
Enable it in your
application.config.php
file.<?php return array( 'modules' => array( // ... 'Eye4web\ZfcUser\Settings' ), // ... );
-
Create database schema(see data folder for dumps)
Usage
First of all you have to create your settings. You do this by inserting a row into the settings table in your database.
Be sure to make the id
something which is easy to read, for example allow_email
.
There are a controller plugin and a viewhelper, both named ZfcUserSetting
. Both takes two arguments, the setting id and an optional user object.
If no user is supplied it will use the currently logged in user.
Now all you have to do is call $this->ZfcUserSetting('allow_email')
and you will get the user setting value.