25 lines
1.2 KiB
PHP
Executable File
25 lines
1.2 KiB
PHP
Executable File
<?php
|
|
/* Copyright 2013 Zachary Doll */
|
|
$ApplicationInfo['Yaga'] = array(
|
|
'Name' => 'Yet Another Gamification Application',
|
|
'Description' => 'Yaga provides customizable reactions, badges, and ranks for your Vanilla forum software.',
|
|
'Version' => '0.1',
|
|
'RequiredApplications' => array('Vanilla' => '2.0.18.8'),
|
|
'RegisterPermissions' => array(
|
|
'Yaga.Reactions.Add', // Can a user click on reactions?
|
|
'Yaga.Reactions.Manage', // Can a user add/edit/delete actions?
|
|
'Yaga.Reactions.View', // Can a user see reactions?
|
|
'Yaga.Reactions.Edit', // Can a user remove other's reactions?
|
|
'Yaga.Badges.Add', // Can a user give out badges?
|
|
'Yaga.Badges.Manage', // Can a user adit/edit/delete badges from the system?
|
|
'Yaga.Badges.View', // Can a user view badges?
|
|
'Yaga.Ranks.Add', // Can a user assign ranks manually?
|
|
'Yaga.Ranks.Manage', // Can a user adit/edit/delete ranks from the system?
|
|
),
|
|
'SetupController' => 'setup',
|
|
'SettingsUrl' => 'configuration/settings',
|
|
'Author' => 'Zachary Doll',
|
|
'AuthorEmail' => 'hgtonight@daklutz.com',
|
|
'AuthorUrl' => 'http://www.daklutz.com',
|
|
'License' => 'All Rights Reserved'
|
|
); |