Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miklb/extended-user-info
Habari plugin that extends user information.
https://github.com/miklb/extended-user-info
Last synced: 10 days ago
JSON representation
Habari plugin that extends user information.
- Host: GitHub
- URL: https://github.com/miklb/extended-user-info
- Owner: miklb
- Created: 2012-06-20T06:01:52.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-20T09:12:12.000Z (over 12 years ago)
- Last Synced: 2024-10-20T02:48:22.641Z (2 months ago)
- Language: PHP
- Size: 109 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Extended User Info
==================Habari plugin that extends user information with links for social media and a bio blurb.
Author: [Michael Bishop](http://miklb.com)
License: [Apache Software License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)
Version: 0.1
### Usage ###
Currently the plugin extends for a Twitter URL, Facebook URL & a bio blurb. Since this plugin is extending the author info, simply using `$post->author->info->` for the three options.
* twitterurl
* facebookurl
* bioblurbSo to output the Twitter URL, `author->info->twitterurl; ?>`. You can extend that to check to make sure the option is set first using something like
```php
author->info->twitterurl ) ) { ?> Follow On Twitter
```