Commit 8961ca08 by netz.coop eG

2022.01.01 - 20220912 - erste Beruehrungen, zB <?php, CONFIG Formatierungen

1 parent 418463f8
<? <?php
/** /**
* @filesource class_CONFIG.inc.php * @filesource class_CONFIG.inc.php
* *
...@@ -8,6 +9,7 @@ ...@@ -8,6 +9,7 @@
* @version 0.4.200901 * @version 0.4.200901
* @link http://mensch.coop * @link http://mensch.coop
*/ */
/** /**
* In dieser Klasse ist die komplette Konfiguration der losp Software * In dieser Klasse ist die komplette Konfiguration der losp Software
* http://vosp.info/index.php/LOSP#CONFIG * http://vosp.info/index.php/LOSP#CONFIG
...@@ -18,28 +20,24 @@ class TreeCONFIG { ...@@ -18,28 +20,24 @@ class TreeCONFIG {
'BasisClipboard' => 'BasisClipboard', 'BasisClipboard' => 'BasisClipboard',
'Element' => 'Element', 'Element' => 'Element',
'AuthorisationList' => 'authorisationlist', 'AuthorisationList' => 'authorisationlist',
'WriteAuthorisation'=> 'authorisationwrite', 'WriteAuthorisation' => 'authorisationwrite',
'ReadAuthorisation' => 'authorisationread', 'ReadAuthorisation' => 'authorisationread',
''=>'' '' => ''
); );
/** /**
* der array $BC_showConditions enthält die BC-Namen die auf ein BC folgen können, damit ein BC trotzdem noch ganz geladen wird (s. Controller) * der array $BC_showConditions enthält die BC-Namen die auf ein BC folgen können, damit ein BC trotzdem noch ganz geladen wird (s. Controller)
* ...p[i]=BC&p[i+1]=BC-Name... -> showBasisClopboard(BC) * ...p[i]=BC&p[i+1]=BC-Name... -> showBasisClopboard(BC)
*/ */
public static $BC_showConditions = array ( public static $BC_showConditions = array(
'TagContentList' => true, 'TagContentList' => true,
'editBC' => true, 'editBC' => true,
); );
public static $Config = array(
public static $Config = array (
/** /**
* @var string timezone_set * @var string timezone_set
*/ */
'timezone_set' => 'Europe/Berlin', 'timezone_set' => 'Europe/Berlin',
/** /**
* @var bool checkBasisClipboardIfExists * @var bool checkBasisClipboardIfExists
* *
...@@ -51,10 +49,9 @@ class TreeCONFIG { ...@@ -51,10 +49,9 @@ class TreeCONFIG {
* wurde, sprich dürfen sich die zwei BasisElemente überhaupt verknüpfen * wurde, sprich dürfen sich die zwei BasisElemente überhaupt verknüpfen
* *
*/ */
'NOT_checkBasisClipboardIfExists' => true, 'NOT_checkBasisClipboardIfExists' => true,
// 'host' => 'http://localhost/losp', weil ist $_LOSP_SERVERNAME // 'host' => 'http://localhost/losp', weil ist $_LOSP_SERVERNAME
'RightManagement' => array ( 'RightManagement' => array(
'default_ReadPrivate' => false, 'default_ReadPrivate' => false,
'default_WritePrivate' => true, 'default_WritePrivate' => true,
'RightManagementBC' => array( 'RightManagementBC' => array(
...@@ -75,9 +72,8 @@ class TreeCONFIG { ...@@ -75,9 +72,8 @@ class TreeCONFIG {
'Default_BCWriteRight' => 'r', 'Default_BCWriteRight' => 'r',
) )
), ),
'TagCloudDepth' => '3',
'TagCloudDepth'=> '3', 'CategoryDepth' => '2',
'CategoryDepth'=> '2',
'InfoboxDepth' => '1', 'InfoboxDepth' => '1',
'CatchAddToLinkListTMCDepth' => '6', 'CatchAddToLinkListTMCDepth' => '6',
'InfoboxBasisClipboardPeriod' => array('week' => -1), 'InfoboxBasisClipboardPeriod' => array('week' => -1),
...@@ -94,7 +90,7 @@ class TreeCONFIG { ...@@ -94,7 +90,7 @@ class TreeCONFIG {
'DefaultDesign' => array( 'DefaultDesign' => array(
'Profile' => 1, 'Profile' => 1,
'TopicBE' => 2, 'TopicBE' => 2,
'ProfilePreferenceManager'=> 3, 'ProfilePreferenceManager' => 3,
'PostingManager' => 4, 'PostingManager' => 4,
'FileManager' => 5, 'FileManager' => 5,
'ResourceManager' => 6, 'ResourceManager' => 6,
...@@ -159,35 +155,27 @@ class TreeCONFIG { ...@@ -159,35 +155,27 @@ class TreeCONFIG {
), ),
) )
); );
public static $History = array(
public static $History = array (
/** /**
* Achtung, muss auch als enum in der losp_BE_SREQUEST_history Tabelle und in der SQL insertToHistory eingetragen werden * Achtung, muss auch als enum in der losp_BE_SREQUEST_history Tabelle und in der SQL insertToHistory eingetragen werden
*/ */
'PossibleAction' => array ( 'edit', 'makeNew', 'delete', 'showSingle') 'PossibleAction' => array('edit', 'makeNew', 'delete', 'showSingle')
); );
public static $Delimiter = array( public static $Delimiter = array(
'category' => '::', 'category' => '::',
'ObjFnc' => '->', 'ObjFnc' => '->',
); );
public static $DisplayLimits = array( public static $DisplayLimits = array(
'Display' => '10', 'Display' => '10',
'SideDateBC' => '499', 'SideDateBC' => '499',
'Profiles' => '3', 'Profiles' => '3',
); );
public static $Settings = array( public static $Settings = array(
'Timeout' => '6600' //Timeout for Login 'Timeout' => '6600' //Timeout for Login
); );
public static $AddonPreferencs = array(
public static $AddonPreferencs = array (
'Infobox' => array( 'Infobox' => array(
'Config' => array( 'Config' => array(
'Special' => array( 'Special' => array(
'NoInfo' => array( 'NoInfo' => array(
'Inbox' => null, 'Inbox' => null,
...@@ -198,7 +186,6 @@ class TreeCONFIG { ...@@ -198,7 +186,6 @@ class TreeCONFIG {
), ),
); );
/** /**
* @var array SQL_Data * @var array SQL_Data
* *
...@@ -223,13 +210,12 @@ class TreeCONFIG { ...@@ -223,13 +210,12 @@ class TreeCONFIG {
), ),
), ),
), ),
'Account' => array( 'Account' => array(
'XML' => array( 'XML' => array(
'Headline' => 'SurName', 'Headline' => 'SurName',
'Formular_Tags' => array('FirstName', 'SurName', 'EMail', 'Street', 'Streetnumber', 'City', 'ZipCode', 'Password'), 'Formular_Tags' => array('FirstName', 'SurName', 'EMail', 'Street', 'Streetnumber', 'City', 'ZipCode', 'Password'),
'Display_Tags' => array('FirstName', 'SurName', 'EMail', 'Street', 'Streetnumber', 'City', 'ZipCode', 'Password'), 'Display_Tags' => array('FirstName', 'SurName', 'EMail', 'Street', 'Streetnumber', 'City', 'ZipCode', 'Password'),
'Formular_Tags_KindOf' => array('Password'=>'password'), 'Formular_Tags_KindOf' => array('Password' => 'password'),
'Subheading' => array('FirstName') 'Subheading' => array('FirstName')
), ),
'MySql' => array( 'MySql' => array(
...@@ -253,7 +239,7 @@ class TreeCONFIG { ...@@ -253,7 +239,7 @@ class TreeCONFIG {
), ),
) )
), ),
'Config' => array( ), 'Config' => array(),
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_profile', 'Tablename' => 'losp_BE_profile',
'SelectColumns' => 'NickName, EMail, Fingerprint, Jabber, Url, OnlineState, OnlineSince, Avatar, Signature', 'SelectColumns' => 'NickName, EMail, Fingerprint, Jabber, Url, OnlineState, OnlineSince, Avatar, Signature',
...@@ -305,17 +291,17 @@ class TreeCONFIG { ...@@ -305,17 +291,17 @@ class TreeCONFIG {
'Headline' => 'NickName', 'Headline' => 'NickName',
'Formular_Tags' => array('NickName', 'EMail', 'Fingerprint', 'Jabber', 'Url', 'Subject', 'Text', 'Avatar', 'Signature'), 'Formular_Tags' => array('NickName', 'EMail', 'Fingerprint', 'Jabber', 'Url', 'Subject', 'Text', 'Avatar', 'Signature'),
'Display_Tags' => array('NickName', 'EMail', 'Fingerprint', 'Jabber', 'Url', 'Subject', 'Text', 'OnlineSince', 'CreateDate', 'OnlineState', 'Avatar', 'Signature'), 'Display_Tags' => array('NickName', 'EMail', 'Fingerprint', 'Jabber', 'Url', 'Subject', 'Text', 'OnlineSince', 'CreateDate', 'OnlineState', 'Avatar', 'Signature'),
'Formular_Tags_KindOf' => array('OnlineSince'=>'time'), 'Formular_Tags_KindOf' => array('OnlineSince' => 'time'),
'Subheading' => array('Subject') 'Subheading' => array('Subject')
) )
), ),
'ProfilePreferenceManager' =>array( 'ProfilePreferenceManager' => array(
'Menu' => array( 'Menu' => array(
CONSTKindOf::LINK_SHOWSINGLE => 'PartOfID', CONSTKindOf::LINK_SHOWSINGLE => 'PartOfID',
CONSTKindOf::LINK_EDIT => 'PartOfID', CONSTKindOf::LINK_EDIT => 'PartOfID',
'LocationBC' => 'BasisClipboard', 'LocationBC' => 'BasisClipboard',
), ),
'BasisClipboards'=> array( 'BasisClipboards' => array(
'LocationBC' => array( 'LocationBC' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -324,16 +310,16 @@ class TreeCONFIG { ...@@ -324,16 +310,16 @@ class TreeCONFIG {
), ),
), ),
), ),
'PostingManager' =>array( 'PostingManager' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
'Blog::Guestbook' => array( 'Blog::Guestbook' => array(
// 'LoadLevel' => 'RealSingleView', // 'LoadLevel' => 'RealSingleView',
'Default_BCReadRight' => 'a', 'Default_BCReadRight' => 'a',
'Default_BCWriteRight' => 'r', 'Default_BCWriteRight' => 'r',
), ),
'ThreadMessageBC::Blog' => array( 'LoadLevel' => 'RealSingleView' ), 'ThreadMessageBC::Blog' => array('LoadLevel' => 'RealSingleView'),
'ThreadMessageBC::Forum' => array( 'LoadLevel' => 'RealSingleView'), 'ThreadMessageBC::Forum' => array('LoadLevel' => 'RealSingleView'),
'ThreadBC' => array( 'LoadLevel' => 'RealSingleView'), 'ThreadBC' => array('LoadLevel' => 'RealSingleView'),
), ),
'Menu' => array( 'Menu' => array(
'Blog::Guestbook' => 'BasisClipboard', 'Blog::Guestbook' => 'BasisClipboard',
...@@ -342,8 +328,8 @@ class TreeCONFIG { ...@@ -342,8 +328,8 @@ class TreeCONFIG {
'ThreadBC' => 'BasisClipboard', 'ThreadBC' => 'BasisClipboard',
), ),
), ),
'FileManager' =>array( 'FileManager' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
'FileBC' => array( 'FileBC' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -354,10 +340,8 @@ class TreeCONFIG { ...@@ -354,10 +340,8 @@ class TreeCONFIG {
'FileBC' => 'BasisClipboard', 'FileBC' => 'BasisClipboard',
), ),
), ),
'HomepageManager' => array(
'BasisClipboards' => array(
'HomepageManager' =>array(
'BasisClipboards'=> array(
'TopicBC' => array( 'TopicBC' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -368,10 +352,10 @@ class TreeCONFIG { ...@@ -368,10 +352,10 @@ class TreeCONFIG {
'TopicBC' => 'BasisClipboard', 'TopicBC' => 'BasisClipboard',
), ),
), ),
'ResourceManager' =>array( 'ResourceManager' => array(
), ),
'NetworkManager' =>array( 'NetworkManager' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
'FriendList' => array( 'FriendList' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -382,9 +366,9 @@ class TreeCONFIG { ...@@ -382,9 +366,9 @@ class TreeCONFIG {
'FriendList' => 'BasisClipboard', 'FriendList' => 'BasisClipboard',
), ),
), ),
'PostOffice' =>array( 'PostOffice' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
/*ATTENTION!!! reihenfolge nicht ändern - from um*/ /* ATTENTION!!! reihenfolge nicht ändern - from um */
'OutBox' => array( 'OutBox' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -432,7 +416,7 @@ class TreeCONFIG { ...@@ -432,7 +416,7 @@ class TreeCONFIG {
), ),
), ),
######################## Social Movement ############################### ######################## Social Movement ###############################
'SocialMovement' =>array( 'SocialMovement' => array(
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_treepart', 'Tablename' => 'losp_BE_treepart',
'SelectColumns' => 'Name', 'SelectColumns' => 'Name',
...@@ -440,7 +424,7 @@ class TreeCONFIG { ...@@ -440,7 +424,7 @@ class TreeCONFIG {
'Joins' => null, 'Joins' => null,
'Where' => null 'Where' => null
), ),
'Menu' => array( ), 'Menu' => array(),
'MainMenu' => array( 'MainMenu' => array(
'IndirectManager' => true, 'IndirectManager' => true,
'DirectManager' => array( 'DirectManager' => array(
...@@ -451,17 +435,17 @@ class TreeCONFIG { ...@@ -451,17 +435,17 @@ class TreeCONFIG {
'DateBC' => true, 'DateBC' => true,
), ),
), ),
'BasisClipboards' => array( ), 'BasisClipboards' => array(),
'XML' => array( 'XML' => array(
'Headline' => 'Name', 'Headline' => 'Name',
'Formular_Tags' => array('Name', 'Subject', 'Text'), 'Formular_Tags' => array('Name', 'Subject', 'Text'),
'Display_Tags' => array('Name', 'Subject', 'Text'), 'Display_Tags' => array('Name', 'Subject', 'Text'),
'Formular_Tags_KindOf' => array('OnlineSince'=>'time'), 'Formular_Tags_KindOf' => array('OnlineSince' => 'time'),
'Subheading' => array('Subject') 'Subheading' => array('Subject')
) )
), ),
'IndirectManager' =>array( 'IndirectManager' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
'ThreadMessageBC::Forum' => true, 'ThreadMessageBC::Forum' => true,
'UrlBC' => true, 'UrlBC' => true,
//'ImageManagement' => true, //'ImageManagement' => true,
...@@ -474,7 +458,7 @@ class TreeCONFIG { ...@@ -474,7 +458,7 @@ class TreeCONFIG {
'NewsfeedBC' => 'BasisClipboard' 'NewsfeedBC' => 'BasisClipboard'
), ),
), ),
'DirectManager' =>array( 'DirectManager' => array(
'BasisClipboards' => array( 'BasisClipboards' => array(
'ThreadMessageBC::Blog' => true, 'ThreadMessageBC::Blog' => true,
'TopicBC' => true, 'TopicBC' => true,
...@@ -498,7 +482,7 @@ class TreeCONFIG { ...@@ -498,7 +482,7 @@ class TreeCONFIG {
// ), // ),
), ),
######################## Culture ############################### ######################## Culture ###############################
'Culture' =>array( 'Culture' => array(
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_treepart', 'Tablename' => 'losp_BE_treepart',
'SelectColumns' => 'Name', 'SelectColumns' => 'Name',
...@@ -506,7 +490,7 @@ class TreeCONFIG { ...@@ -506,7 +490,7 @@ class TreeCONFIG {
'Joins' => null, 'Joins' => null,
'Where' => null 'Where' => null
), ),
'Menu' => array( ), 'Menu' => array(),
'MainMenu' => array( 'MainMenu' => array(
'CultureIndirectManager' => true, 'CultureIndirectManager' => true,
'CultureDirectManager' => array( 'CultureDirectManager' => array(
...@@ -514,20 +498,19 @@ class TreeCONFIG { ...@@ -514,20 +498,19 @@ class TreeCONFIG {
'TopicBC' => true, 'TopicBC' => true,
'ProfileBC' => true, 'ProfileBC' => true,
'DateBC' => true, 'DateBC' => true,
), ),
), ),
'BasisClipboards' => array( ), 'BasisClipboards' => array(),
'XML' => array( 'XML' => array(
'Headline' => 'Name', 'Headline' => 'Name',
'Formular_Tags' => array('Name', 'Subject', 'Text'), 'Formular_Tags' => array('Name', 'Subject', 'Text'),
'Display_Tags' => array('Name', 'Subject', 'Text'), 'Display_Tags' => array('Name', 'Subject', 'Text'),
'Formular_Tags_KindOf' => array('OnlineSince'=>'time'), 'Formular_Tags_KindOf' => array('OnlineSince' => 'time'),
'Subheading' => array('Subject') 'Subheading' => array('Subject')
) )
), ),
'CultureIndirectManager' =>array( 'CultureIndirectManager' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
// 'ThreadMessageBC::Forum' => true, // 'ThreadMessageBC::Forum' => true,
// 'UrlBC' => true, // 'UrlBC' => true,
// 'NewsfeedBC' => true // 'NewsfeedBC' => true
...@@ -538,7 +521,7 @@ class TreeCONFIG { ...@@ -538,7 +521,7 @@ class TreeCONFIG {
// 'NewsfeedBC' => 'BasisClipboard' // 'NewsfeedBC' => 'BasisClipboard'
), ),
), ),
'CultureDirectManager' =>array( 'CultureDirectManager' => array(
'BasisClipboards' => array( 'BasisClipboards' => array(
'ThreadMessageBC::Blog' => true, 'ThreadMessageBC::Blog' => true,
'TopicBC' => true, 'TopicBC' => true,
...@@ -553,15 +536,15 @@ class TreeCONFIG { ...@@ -553,15 +536,15 @@ class TreeCONFIG {
), ),
), ),
######################## Economy ############################### ######################## Economy ###############################
'Economy' =>array( 'Economy' => array(
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_treepart', 'Tablename' => 'losp_BE_treepart',
'SelectColumns' => 'Name', 'SelectColumns' => 'Name',
'OrderByDefault' => array('column' =>'Name'), 'OrderByDefault' => array('column' => 'Name'),
'Joins' => null, 'Joins' => null,
'Where' => null 'Where' => null
), ),
'Menu' => array( ), 'Menu' => array(),
'MainMenu' => array( 'MainMenu' => array(
'EconomyIndirectManager' => true, 'EconomyIndirectManager' => true,
'EconomyDirectManager' => array( 'EconomyDirectManager' => array(
...@@ -571,17 +554,17 @@ class TreeCONFIG { ...@@ -571,17 +554,17 @@ class TreeCONFIG {
'DateBC' => true, 'DateBC' => true,
), ),
), ),
'BasisClipboards' => array( ), 'BasisClipboards' => array(),
'XML' => array( 'XML' => array(
'Headline' => 'Name', 'Headline' => 'Name',
'Formular_Tags' => array('Name', 'Subject', 'Text'), 'Formular_Tags' => array('Name', 'Subject', 'Text'),
'Display_Tags' => array('Name', 'Subject', 'Text'), 'Display_Tags' => array('Name', 'Subject', 'Text'),
'Formular_Tags_KindOf' => array('OnlineSince'=>'time'), 'Formular_Tags_KindOf' => array('OnlineSince' => 'time'),
'Subheading' => array('Subject') 'Subheading' => array('Subject')
) )
), ),
'EconomyIndirectManager' =>array( 'EconomyIndirectManager' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
'ThreadMessageBC::Forum' => true, 'ThreadMessageBC::Forum' => true,
// 'UrlBC' => true, // 'UrlBC' => true,
// 'ImageManagement' => true, // 'ImageManagement' => true,
...@@ -594,7 +577,7 @@ class TreeCONFIG { ...@@ -594,7 +577,7 @@ class TreeCONFIG {
// 'NewsfeedBC' => 'BasisClipboard' // 'NewsfeedBC' => 'BasisClipboard'
), ),
), ),
'EconomyDirectManager' =>array( 'EconomyDirectManager' => array(
'BasisClipboards' => array( 'BasisClipboards' => array(
'ThreadMessageBC::Blog' => true, 'ThreadMessageBC::Blog' => true,
'TopicBC' => true, 'TopicBC' => true,
...@@ -612,7 +595,6 @@ class TreeCONFIG { ...@@ -612,7 +595,6 @@ class TreeCONFIG {
'TopicBE' => array( 'TopicBE' => array(
'Config' => array( 'Config' => array(
), ),
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_topic', 'Tablename' => 'losp_BE_topic',
'SelectColumns' => 'Name', 'SelectColumns' => 'Name',
...@@ -630,11 +612,9 @@ class TreeCONFIG { ...@@ -630,11 +612,9 @@ class TreeCONFIG {
'Default_BCWriteRight' => 'r', 'Default_BCWriteRight' => 'r',
), ),
'Blog::SubPages' => array( 'Blog::SubPages' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
), ),
'Default_BCReadRight' => 'a', 'Default_BCReadRight' => 'a',
'Default_BCWriteRight' => 'r', 'Default_BCWriteRight' => 'r',
), ),
...@@ -668,15 +648,15 @@ class TreeCONFIG { ...@@ -668,15 +648,15 @@ class TreeCONFIG {
) )
), ),
'LocationBE' => array( 'LocationBE' => array(
'Config' => array( ), 'Config' => array(),
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_location', 'Tablename' => 'losp_BE_location',
'SelectColumns' => 'Name', 'SelectColumns' => 'Name',
'OrderByDefault' => array('column' =>'Name'), 'OrderByDefault' => array('column' => 'Name'),
'Joins' => null, 'Joins' => null,
'Where' => null 'Where' => null
), ),
'backwardBasisClipboards' => array( 'ProfileBC'), 'backwardBasisClipboards' => array('ProfileBC'),
'BasisClipboards' => array( 'BasisClipboards' => array(
'ThreadMessageBC::Blog' => array( 'ThreadMessageBC::Blog' => array(
'Default_BCReadRight' => 'a', 'Default_BCReadRight' => 'a',
...@@ -716,34 +696,28 @@ class TreeCONFIG { ...@@ -716,34 +696,28 @@ class TreeCONFIG {
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_date', 'Tablename' => 'losp_BE_date',
'SelectColumns' => 'Start, End', 'SelectColumns' => 'Start, End',
'OrderByDefault' => array ( 'OrderByDefault' => array(
'operator' => 'TERM', 'operator' => 'TERM',
'column' => array('Start', 'End'), 'column' => array('Start', 'End'),
'special' => array('1', 'month42', '1') 'special' => array('1', 'month42', '1')
), ),
//array('column' => 'Start', 'columnsec' => 'End', 'operator' => 'BETWEEN' , 'from' => '1227822721', 'to' => '1227973019'), //array('column' => 'Start', 'columnsec' => 'End', 'operator' => 'BETWEEN' , 'from' => '1227822721', 'to' => '1227973019'),
//array('column' => 'Start', 'direction'=>'DESC'), //array('column' => 'Start', 'direction'=>'DESC'),
'Joins' => null, 'Joins' => null,
'Where' => null 'Where' => null
), ),
'backwardBasisClipboards' => array( 'ProfileBC'), 'backwardBasisClipboards' => array('ProfileBC'),
'BasisClipboards' => array( 'BasisClipboards' => array(
), ),
'XML' => array( 'XML' => array(
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array('Start', 'End', 'Subject', 'Text'), 'Formular_Tags' => array('Start', 'End', 'Subject', 'Text'),
'Display_Tags' => array('Start', 'End', 'Subject', 'Text', 'State'), 'Display_Tags' => array('Start', 'End', 'Subject', 'Text', 'State'),
'Formular_Tags_KindOf' => array('Start'=>'time', 'End'=>'time'), 'Formular_Tags_KindOf' => array('Start' => 'time', 'End' => 'time'),
'Subheading' => array('Start', 'End', 'State') 'Subheading' => array('Start', 'End', 'State')
) )
), ),
'NewsfeedBE' => array(
'NewsfeedBE' =>array(
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_newsfeed', 'Tablename' => 'losp_BE_newsfeed',
'SelectColumns' => 'Url', 'SelectColumns' => 'Url',
...@@ -751,7 +725,7 @@ class TreeCONFIG { ...@@ -751,7 +725,7 @@ class TreeCONFIG {
'Joins' => null, 'Joins' => null,
'Where' => null 'Where' => null
), ),
'BasisClipboards'=> array( 'BasisClipboards' => array(
'NewsfeedItemBC' => array( 'NewsfeedItemBC' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -762,23 +736,23 @@ class TreeCONFIG { ...@@ -762,23 +736,23 @@ class TreeCONFIG {
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array('Url'), 'Formular_Tags' => array('Url'),
'Display_Tags' => array('Url', 'Link', 'Subject', 'Text'), 'Display_Tags' => array('Url', 'Link', 'Subject', 'Text'),
'Formular_Tags_KindOf' => array('Link'=>'url'), 'Formular_Tags_KindOf' => array('Link' => 'url'),
'Subheading' => array() 'Subheading' => array()
) )
), ),
'NewsfeedItemBE' =>array( 'NewsfeedItemBE' => array(
'XML' => array( 'XML' => array(
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array(), 'Formular_Tags' => array(),
'Display_Tags' => array('Link', 'Subject', 'Text'), 'Display_Tags' => array('Link', 'Subject', 'Text'),
'Formular_Tags_KindOf' => array('Link'=>'url'), 'Formular_Tags_KindOf' => array('Link' => 'url'),
'Subheading' => array('Link') 'Subheading' => array('Link')
) )
), ),
'ThreadMessageBE' => array( 'ThreadMessageBE' => array(
'Config' => array( 'Config' => array(
), ),
'BasisClipboards'=> array( 'BasisClipboards' => array(
'ThreadBC' => array( 'ThreadBC' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -793,32 +767,26 @@ class TreeCONFIG { ...@@ -793,32 +767,26 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'ListView' => array( 'ListView' => array(
'aBasisElementAddon' => array( 'aBasisElementAddon' => array(
'Infobox' => true, 'Infobox' => true,
'Category' => true, 'Category' => true,
'TagCloud' => true 'TagCloud' => true
), ),
), ),
), ),
'MySql' => array( 'MySql' => array(
'OrderByDefault' => array ( 'OrderByDefault' => array(
'direction' => 'desc', 'direction' => 'desc',
) )
), ),
'XML' => array( 'XML' => array(
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array('Subject', 'Text'), 'Formular_Tags' => array('Subject', 'Text'),
'Display_Tags' => array('Subject', 'Text'), 'Display_Tags' => array('Subject', 'Text'),
'Formular_Tags_KindOf' => array(''=>''), 'Formular_Tags_KindOf' => array('' => ''),
'Subheading' => array('Text') 'Subheading' => array('Text')
), ),
), ),
'MultimediaText' => array( 'MultimediaText' => array(
// 'MySql' => array( // 'MySql' => array(
// 'Tablename' => 'losp_BE_file', noch nicht implementiert!!!!!!!! // 'Tablename' => 'losp_BE_file', noch nicht implementiert!!!!!!!!
...@@ -848,22 +816,20 @@ class TreeCONFIG { ...@@ -848,22 +816,20 @@ class TreeCONFIG {
*/ */
'LoadLevel' => array( 'LoadLevel' => array(
'ListView' => array( 'ListView' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'TagCloud' => array('LoadLight' => true,), 'TagCloud' => array('LoadLight' => true,),
'Category' => true, 'Category' => true,
), ),
), ),
'Always' => array( 'Always' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'TagCloud' => array( 'TagCloud' => array(
'LoadLight' => true, 'LoadLight' => true,
), ),
), ),
), ),
'ForShowSingle' => array( 'ForShowSingle' => array(
'aBasisElementAddon' => array(
'aBasisElementAddon' => array (
'Infobox' => true, 'Infobox' => true,
'TagCloud' => true, 'TagCloud' => true,
'Logger' => array( 'Logger' => array(
...@@ -877,13 +843,13 @@ class TreeCONFIG { ...@@ -877,13 +843,13 @@ class TreeCONFIG {
'loadBasisElementDesign' => 'function' 'loadBasisElementDesign' => 'function'
), ),
'DefaultView' => array( 'DefaultView' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
// 'Infobox' => true, // 'Infobox' => true,
), ),
), ),
'RealSingleView' => array( 'RealSingleView' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
// 'Infobox' => true, // 'Infobox' => true,
'Logger' => array( 'Logger' => array(
...@@ -895,7 +861,7 @@ class TreeCONFIG { ...@@ -895,7 +861,7 @@ class TreeCONFIG {
), ),
), ),
'Edit' => array( 'Edit' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'Infobox' => true, 'Infobox' => true,
'TagCloud' => true, 'TagCloud' => true,
...@@ -908,10 +874,9 @@ class TreeCONFIG { ...@@ -908,10 +874,9 @@ class TreeCONFIG {
), ),
'loadBasisElementDesign' => 'function', 'loadBasisElementDesign' => 'function',
'loadComposition' => 'function', 'loadComposition' => 'function',
), ),
'MakeNew' => array( 'MakeNew' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'TagCloud' => true, 'TagCloud' => true,
'Logger' => array( 'Logger' => array(
...@@ -924,8 +889,7 @@ class TreeCONFIG { ...@@ -924,8 +889,7 @@ class TreeCONFIG {
'loadComposition' => 'function', 'loadComposition' => 'function',
), ),
), ),
'BasisClipboards' => array(
'BasisClipboards'=> array(
'LinkList' => array( 'LinkList' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -939,21 +903,18 @@ class TreeCONFIG { ...@@ -939,21 +903,18 @@ class TreeCONFIG {
// 'Display_Tags' => array('Subject', 'Text','BasisElementDesignID'), // 'Display_Tags' => array('Subject', 'Text','BasisElementDesignID'),
'Formular_Tags' => array('Subject', 'Text'), 'Formular_Tags' => array('Subject', 'Text'),
'Display_Tags' => array('Subject', 'Text'), 'Display_Tags' => array('Subject', 'Text'),
'Formular_Tags_KindOf' => array(''=>''), 'Formular_Tags_KindOf' => array('' => ''),
'Subheading' => array('Text') 'Subheading' => array('Text')
) )
), ),
'FileBE' => array( 'FileBE' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
'ThreadBC' => array( 'ThreadBC' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
), ),
) )
), ),
'MySql' => array( 'MySql' => array(
'Tablename' => 'losp_BE_file', 'Tablename' => 'losp_BE_file',
'SelectColumns' => 'Link', 'SelectColumns' => 'Link',
...@@ -964,7 +925,7 @@ class TreeCONFIG { ...@@ -964,7 +925,7 @@ class TreeCONFIG {
), ),
'XML' => array( 'XML' => array(
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array( 'Subject', 'Link','Text' ), 'Formular_Tags' => array('Subject', 'Link', 'Text'),
'Display_Tags' => array('Subject', 'Text', 'Link', 'Mime'), 'Display_Tags' => array('Subject', 'Text', 'Link', 'Mime'),
'Formular_Tags_KindOf' => array( 'Formular_Tags_KindOf' => array(
'Link' => 'file' 'Link' => 'file'
...@@ -973,7 +934,7 @@ class TreeCONFIG { ...@@ -973,7 +934,7 @@ class TreeCONFIG {
) )
), ),
'UrlBE' => array( 'UrlBE' => array(
'BasisClipboards'=> array( 'BasisClipboards' => array(
'ThreadBC' => array( 'ThreadBC' => array(
'LoadLevel' => array( 'LoadLevel' => array(
'ForShowSingle' => null, 'ForShowSingle' => null,
...@@ -989,7 +950,7 @@ class TreeCONFIG { ...@@ -989,7 +950,7 @@ class TreeCONFIG {
), ),
'XML' => array( 'XML' => array(
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array( 'Subject', 'Url','Text' ), 'Formular_Tags' => array('Subject', 'Url', 'Text'),
'Display_Tags' => array('Subject', 'Text', 'Url'), 'Display_Tags' => array('Subject', 'Text', 'Url'),
'Formular_Tags_KindOf' => array( 'Formular_Tags_KindOf' => array(
'' => '' '' => ''
...@@ -997,7 +958,6 @@ class TreeCONFIG { ...@@ -997,7 +958,6 @@ class TreeCONFIG {
'Subheading' => array() 'Subheading' => array()
) )
), ),
'ThreadMessageUnderBE' => array( 'ThreadMessageUnderBE' => array(
'BasisClipboards' => array( 'BasisClipboards' => array(
'ThreadMessageBC::Forum' => array( 'ThreadMessageBC::Forum' => array(
...@@ -1008,7 +968,7 @@ class TreeCONFIG { ...@@ -1008,7 +968,7 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'ListView' => array( 'ListView' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Infobox' => true, 'Infobox' => true,
), ),
), ),
...@@ -1017,7 +977,7 @@ class TreeCONFIG { ...@@ -1017,7 +977,7 @@ class TreeCONFIG {
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array('Subject', 'Text'), 'Formular_Tags' => array('Subject', 'Text'),
'Display_Tags' => array('Subject', 'Text'), 'Display_Tags' => array('Subject', 'Text'),
'Formular_Tags_KindOf' => array(''=>''), 'Formular_Tags_KindOf' => array('' => ''),
'Subheading' => array('Text') 'Subheading' => array('Text')
) )
), ),
...@@ -1038,7 +998,7 @@ class TreeCONFIG { ...@@ -1038,7 +998,7 @@ class TreeCONFIG {
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array('Subject', 'Text'), 'Formular_Tags' => array('Subject', 'Text'),
'Display_Tags' => array('Subject', 'Text'), 'Display_Tags' => array('Subject', 'Text'),
'Formular_Tags_KindOf' => array(''=>''), 'Formular_Tags_KindOf' => array('' => ''),
'Subheading' => array('Text') 'Subheading' => array('Text')
) )
), ),
...@@ -1052,7 +1012,7 @@ class TreeCONFIG { ...@@ -1052,7 +1012,7 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'ListView' => array( 'ListView' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Infobox' => true, 'Infobox' => true,
), ),
), ),
...@@ -1061,32 +1021,25 @@ class TreeCONFIG { ...@@ -1061,32 +1021,25 @@ class TreeCONFIG {
'Headline' => 'Subject', 'Headline' => 'Subject',
'Formular_Tags' => array('Subject', 'Text'), 'Formular_Tags' => array('Subject', 'Text'),
'Display_Tags' => array('Subject', 'Text'), 'Display_Tags' => array('Subject', 'Text'),
'Formular_Tags_KindOf' => array(''=>''), 'Formular_Tags_KindOf' => array('' => ''),
'Subheading' => array('Text') 'Subheading' => array('Text')
), ),
'MySql' => array( 'MySql' => array(
'OrderByDefault' => array('column' => 'Subject') 'OrderByDefault' => array('column' => 'Subject')
), ),
), ),
); );
public static $BasisClipboardPreferencs = array( public static $BasisClipboardPreferencs = array(
/** /**
* Exceptions: Links (für die Controller::runTree) * Exceptions: Links (für die Controller::runTree)
* kommen in exatra Arraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaay * kommen in exatra Arraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaay
*/ */
'ProfilePreferenceManager' => array( 'ProfilePreferenceManager' => array(
'MultimediaText' => 'Profile', 'MultimediaText' => 'Profile',
), ),
'NetworkManager' => array( 'NetworkManager' => array(
'MultimediaText' => 'Profile', 'MultimediaText' => 'Profile',
), ),
'Profile' => array( 'Profile' => array(
'MultimediaText' => 'Profile', 'MultimediaText' => 'Profile',
'link' => 'ProfileBC' 'link' => 'ProfileBC'
...@@ -1098,13 +1051,12 @@ class TreeCONFIG { ...@@ -1098,13 +1051,12 @@ class TreeCONFIG {
'FileManager' => array( 'FileManager' => array(
// 'MultimediaText' => 'this', // 'MultimediaText' => 'this',
'link' => 'FileManager' 'link' => 'FileManager'
), ),
'PostOffice' => array( 'PostOffice' => array(
// 'MultimediaText' => 'this', // 'MultimediaText' => 'this',
'link' => 'PostOffice' 'link' => 'PostOffice'
), ),
'TopicBE' => array( // speziell für Taglist 'TopicBE' => array(// speziell für Taglist
'MultimediaText' => 'TopicBE', 'MultimediaText' => 'TopicBE',
'link' => 'TopicBE' 'link' => 'TopicBE'
// 'link' => 'TopicBC' // 'link' => 'TopicBC'
...@@ -1113,7 +1065,6 @@ class TreeCONFIG { ...@@ -1113,7 +1065,6 @@ class TreeCONFIG {
// 'MultimediaText' => 'DateBE', // 'MultimediaText' => 'DateBE',
// 'link' => 'DateBC' // 'link' => 'DateBC'
// ), // ),
'AccountManagement' => array( 'AccountManagement' => array(
'Menu' => array( 'Menu' => array(
CONSTKindOf::LINK_SHOWSINGLE => false, CONSTKindOf::LINK_SHOWSINGLE => false,
...@@ -1121,8 +1072,6 @@ class TreeCONFIG { ...@@ -1121,8 +1072,6 @@ class TreeCONFIG {
CONSTKindOf::LINK_CHANGEPASSWORD => false, CONSTKindOf::LINK_CHANGEPASSWORD => false,
) )
), ),
/** /**
* normale BasisClipboard's' * normale BasisClipboard's'
* *
...@@ -1142,31 +1091,28 @@ class TreeCONFIG { ...@@ -1142,31 +1091,28 @@ class TreeCONFIG {
'Menu' => array( 'Menu' => array(
CONSTKindOf::LINK_MAKENEW => false, CONSTKindOf::LINK_MAKENEW => false,
'ListCondition' => array( 'ListCondition' => array(
array( 'ListCondition' => array ( array ('term' => array( array('ListCondition' => array(array('term' => array(
'Column' => array ('1','Start','End'), 'Column' => array('1', 'Start', 'End'),
'Special' => array(2,'month42', 1), 'Special' => array(2, 'month42', 1),
))) )))
), ),
array( 'ListCondition' => array ( array ('term' => array( array('ListCondition' => array(array('term' => array(
'Column' => array ('1','Start','End'), 'Column' => array('1', 'Start', 'End'),
'Special' => array(0,'month42', 1), 'Special' => array(0, 'month42', 1),
))) )))
), ),
), ),
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'Always' => array( 'Always' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'TagCloud' => true, 'TagCloud' => true,
), ),
), ),
), ),
), ),
'LocationBC'=> array( 'LocationBC' => array(
'MultimediaText' => 'LocationBE', 'MultimediaText' => 'LocationBE',
'Services' => array( 'Services' => array(
'rss2' => array('type' => 'application/rss+xml'), 'rss2' => array('type' => 'application/rss+xml'),
...@@ -1178,7 +1124,7 @@ class TreeCONFIG { ...@@ -1178,7 +1124,7 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'Always' => array( 'Always' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'TagCloud' => true, 'TagCloud' => true,
), ),
...@@ -1197,10 +1143,9 @@ class TreeCONFIG { ...@@ -1197,10 +1143,9 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'Always' => array( 'Always' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'TagCloud' => true, 'TagCloud' => true,
), ),
), ),
), ),
...@@ -1270,7 +1215,7 @@ class TreeCONFIG { ...@@ -1270,7 +1215,7 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'Always' => array( 'Always' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'TagCloud' => true, 'TagCloud' => true,
), ),
...@@ -1295,7 +1240,7 @@ class TreeCONFIG { ...@@ -1295,7 +1240,7 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'Always' => array( 'Always' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'TagCloud' => true, 'TagCloud' => true,
), ),
...@@ -1315,7 +1260,7 @@ class TreeCONFIG { ...@@ -1315,7 +1260,7 @@ class TreeCONFIG {
), ),
'LoadLevel' => array( 'LoadLevel' => array(
'Always' => array( 'Always' => array(
'aBasisElementAddon' => array ( 'aBasisElementAddon' => array(
'Category' => true, 'Category' => true,
'TagCloud' => true, 'TagCloud' => true,
), ),
...@@ -1335,7 +1280,6 @@ class TreeCONFIG { ...@@ -1335,7 +1280,6 @@ class TreeCONFIG {
CONSTKindOf::LINK_MAKENEW => false, CONSTKindOf::LINK_MAKENEW => false,
), ),
), ),
'Blog' => array( 'Blog' => array(
'MultimediaText' => 'MultimediaText', 'MultimediaText' => 'MultimediaText',
'Services' => array( 'Services' => array(
...@@ -1353,7 +1297,6 @@ class TreeCONFIG { ...@@ -1353,7 +1297,6 @@ class TreeCONFIG {
CONSTKindOf::LINK_MAKENEW => false, CONSTKindOf::LINK_MAKENEW => false,
), ),
), ),
'NewsfeedItemBC' => array( 'NewsfeedItemBC' => array(
'MultimediaText' => 'NewsfeedItemBE', 'MultimediaText' => 'NewsfeedItemBE',
'without_db' => true 'without_db' => true
...@@ -1402,7 +1345,7 @@ class TreeCONFIG { ...@@ -1402,7 +1345,7 @@ class TreeCONFIG {
'Special' => array(2,'month42', 1), 'Special' => array(2,'month42', 1),
))) )))
),*/ ), */
) )
), ),
'TagContentList' => array( 'TagContentList' => array(
...@@ -1431,39 +1374,33 @@ class TreeCONFIG { ...@@ -1431,39 +1374,33 @@ class TreeCONFIG {
), ),
'link' => 'FileBC', 'link' => 'FileBC',
'Menu' => array( 'Menu' => array(
'ListCondition' => array( 'ListCondition' => array(
array('ListCondition' => array(array('equal' => array(
array( 'ListCondition' => array ( array ('equal' => array( 'Column' => array('Mime'),
'Column' => array ('Mime'),
'Value' => array('application'), 'Value' => array('application'),
))) )))
), ),
array( 'ListCondition' => array ( array ('equal' => array( array('ListCondition' => array(array('equal' => array(
'Column' => array ('Mime'), 'Column' => array('Mime'),
'Value' => array('audio'), 'Value' => array('audio'),
))) )))
), ),
array( 'ListCondition' => array ( array ('equal' => array( array('ListCondition' => array(array('equal' => array(
'Column' => array ('Mime'), 'Column' => array('Mime'),
'Value' => array('image'), 'Value' => array('image'),
))) )))
), ),
array( 'ListCondition' => array ( array ('equal' => array( array('ListCondition' => array(array('equal' => array(
'Column' => array ('Mime'), 'Column' => array('Mime'),
'Value' => array('text'), 'Value' => array('text'),
))) )))
), ),
array( 'ListCondition' => array ( array ('equal' => array( array('ListCondition' => array(array('equal' => array(
'Column' => array ('Mime'), 'Column' => array('Mime'),
'Value' => array('video'), 'Value' => array('video'),
))) )))
), ),
/*array( 'ListCondition' => array ( array ('larger' => array( /* array( 'ListCondition' => array ( array ('larger' => array(
'Column' => array ('ID'), 'Column' => array ('ID'),
'Special' => array (2), 'Special' => array (2),
'Value' => array('30') 'Value' => array('30')
...@@ -1473,19 +1410,16 @@ class TreeCONFIG { ...@@ -1473,19 +1410,16 @@ class TreeCONFIG {
'Value' => array('image') 'Value' => array('image')
)) ))
) )
),*/ ), */
/* array( 'ListCondition' => array ( array ('larger' => array( /* array( 'ListCondition' => array ( array ('larger' => array(
'Column' => array ('ID'), 'Column' => array ('ID'),
'Special' => array(2,'int',2), 'Special' => array(2,'int',2),
'Value' => array(1) 'Value' => array(1)
)) ))
) )
),*/ ), */
), ),
CONSTKindOf::LINK_MAKENEW => false, CONSTKindOf::LINK_MAKENEW => false,
), ),
), ),
'FileBC::Image' => array( 'FileBC::Image' => array(
...@@ -1503,5 +1437,7 @@ class TreeCONFIG { ...@@ -1503,5 +1437,7 @@ class TreeCONFIG {
), ),
), ),
); );
} }
?> ?>
...@@ -111,6 +111,7 @@ $Content->appendChild($DOMElement_Footer); ...@@ -111,6 +111,7 @@ $Content->appendChild($DOMElement_Footer);
//if (array_key_exists('HTTP_USER_AGENT', $_SERVER) && eregi('Win', $_SERVER["HTTP_USER_AGENT"])) { //if (array_key_exists('HTTP_USER_AGENT', $_SERVER) && eregi('Win', $_SERVER["HTTP_USER_AGENT"])) {
// $var_css = $_LOSP_PATH_TO_ROOT . 'include/Forest/' . $_TREE . '/Design/' . $_LOSP_DESIGNDIR . '/css/default_win.css'; // $var_css = $_LOSP_PATH_TO_ROOT . 'include/Forest/' . $_TREE . '/Design/' . $_LOSP_DESIGNDIR . '/css/default_win.css';
//} else { //} else {
$var_css = $_LOSP_PATH_TO_ROOT . 'include/Forest/' . $_TREE . '/Design/' . $_LOSP_DESIGNDIR . '/css/default.css'; //$var_css = $_LOSP_PATH_TO_ROOT . 'include/Forest/' . $_TREE . '/Design/' . $_LOSP_DESIGNDIR . '/css/default.css';
$var_css = 'include/Forest/' . $_TREE . '/Design/' . $_LOSP_DESIGNDIR . '/css/default.css';
//} //}
?> ?>
\ No newline at end of file
This diff could not be displayed because it is too large.
<? <?php
/** /**
* @filesource class_TagCloud.inc.php * @filesource class_TagCloud.inc.php
* *
......
<? <?php
/** /**
* @file config_example_freesn.php * @file config_example_freesn.php
* @category freeSN * @category freeSN
......
<? <?php
/** /**
* @file config_example_mysql.php * @file config_example_mysql.php
* @category freeSN * @category freeSN
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!