-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gilbert Seilheimer <email@gseilheimer.de>
- Loading branch information
Gilbert Seilheimer
committed
Feb 21, 2012
0 parents
commit 2514bcb
Showing
65 changed files
with
1,533 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
|
||
/** | ||
* MARKITUP | ||
* | ||
* @author gilbert.seilheimer@eilige-edv.de | ||
* | ||
* @package redaxo4 | ||
* @version svn:$Id$ | ||
*/ | ||
|
||
// AddOn-MARKITUP | ||
|
||
////////////////////////////////////////////////////////////////////////////////// | ||
// CONFIG | ||
////////////////////////////////////////////////////////////////////////////////// | ||
|
||
// VARs | ||
$addon_name = "gs_markitup"; | ||
|
||
// Sprachdateien anhaengen | ||
if(TRUE == $REX['REDAXO']) | ||
{ | ||
$I18N->appendFile($REX['INCLUDE_PATH'].'/addons/'.$addon_name.'/lang/'); | ||
} | ||
|
||
$REX['ADDON']['rxid'][$addon_name] = '711'; | ||
$REX['ADDON']['page'][$addon_name] = "markitup"; | ||
|
||
if(TRUE == $REX['REDAXO']) | ||
{ | ||
$REX['ADDON']['name'][$addon_name] = $I18N->msg("addon_name"); | ||
} | ||
|
||
// Recht um das AddOn zu aendern | ||
$REX['ADDON']['perm'][$addon_name] = 'markitup[1]'; | ||
|
||
// Credits | ||
$REX['ADDON']['version'][$addon_name] = '1.1.12'; | ||
$REX['ADDON']['author'][$addon_name] = 'Gilbert Seilheimer'; | ||
$REX['ADDON']['supportpage'][$addon_name] = 'forum.redaxo.org'; | ||
|
||
// ************* | ||
$REX['PERM'][] = 'markitup[1]'; | ||
$REX['PERM'][] = 'markitup[2]'; | ||
|
||
// Fuer die Benutzervewaltung | ||
$REX['EXTPERM'][] = 'markitup[3]'; | ||
|
||
////////////////////////////////////////////////////////////////////////////////// | ||
// SUBPAGES | ||
////////////////////////////////////////////////////////////////////////////////// | ||
|
||
if(TRUE == $REX['REDAXO']) | ||
{ | ||
$REX['ADDON'][$addon_name]['SUBPAGES'] = | ||
array( | ||
array('readme', $I18N->msg('addon_subpage_readme')), | ||
array('modul', $I18N->msg('addon_subpage_modul')) | ||
); | ||
} | ||
?> |
Oops, something went wrong.