mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
added cybro_profile
This commit is contained in:
parent
c71acf94cd
commit
d54d90e6f9
1
cybro_profile/setup/phpgw_en.lang
Normal file
1
cybro_profile/setup/phpgw_en.lang
Normal file
@ -0,0 +1 @@
|
||||
cybro_profile common en Cybro Profile
|
54
cybro_profile/setup/setup.inc.php
Executable file
54
cybro_profile/setup/setup.inc.php
Executable file
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* eGroupWare - cybro_profile *
|
||||
* http://www.egroupware.org *
|
||||
* ----------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
/* Basic information about this app */
|
||||
$setup_info['cybro_profile']['name'] = 'cybro_profile';
|
||||
$setup_info['cybro_profile']['title'] = 'Cybro Profile';
|
||||
$setup_info['cybro_profile']['version'] = '0.001';
|
||||
$setup_info['cybro_profile']['app_order'] = 90;
|
||||
$setup_info['cybro_profile']['enable'] = 1;
|
||||
|
||||
/* some info's for about.php and apps.egroupware.org */
|
||||
$setup_info['cybro_profile']['author'] = 'RVD';
|
||||
$setup_info['cybro_profile']['license'] = 'GPL';
|
||||
$setup_info['cybro_profile']['description'] =
|
||||
'reprofile myprofile';
|
||||
$setup_info['cybro_profile']['note'] =
|
||||
'must be simple';
|
||||
$setup_info['cybro_profile']['maintainer'] = 'Richard van Diessen';
|
||||
$setup_info['cybro_profile']['maintainer_email'] = 'richard@jataggo.nl';
|
||||
|
||||
/* The hooks this app includes, needed for hooks registration */
|
||||
$setup_info['cybro_profile']['hooks'] = array(
|
||||
'preferences',
|
||||
'manual',
|
||||
'home',
|
||||
'settings'
|
||||
);
|
||||
$setup_info['cybro_profile']['hooks']['sidebox_menu'] = 'cybro_profile.ui_cprofile.sidebox_menu';
|
||||
|
||||
/* Dependacies for this app to work */
|
||||
$setup_info['cybro_profile']['depends'][] = array(
|
||||
'appname' => 'phpgwapi',
|
||||
'versions' => array('1.0.0','1.0.1','1.2','1.3','1.3.005','1.3.006','1.4','1.5')
|
||||
);
|
||||
$setup_info['cybro_profile']['depends'][] = array(
|
||||
'appname' => 'jinn',
|
||||
'versions' => array('0.9.021','0.9.026','0.9.1','0.9.031','0.9','1.0.0')
|
||||
);
|
||||
|
||||
/* The tables this app creates */
|
||||
$setup_info['cybro_profile']['tables'] = array('egw_cybro_profile_links','egw_cybro_profile_frontpage','egw_cybro_profile_homepage','egw_cybro_profile_contacts');
|
||||
|
||||
|
||||
|
29
cybro_profile/setup/tables_baseline.inc.php
Normal file
29
cybro_profile/setup/tables_baseline.inc.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* eGroupWare - Setup *
|
||||
* http://www.eGroupWare.org *
|
||||
* Created by eTemplates DB-Tools written by ralfbecker@outdoor-training.de *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id: class.db_tools.inc.php,v 1.32 2005/11/10 12:27:04 ralfbecker Exp $ */
|
||||
|
||||
|
||||
$phpgw_baseline = array(
|
||||
'egw_cybro_profile_links' => array(
|
||||
'fd' => array(
|
||||
'id' => array('type' => 'auto'),
|
||||
'name' => array('type' => 'varchar','precision' => '100'),
|
||||
'description' => array('type' => 'text'),
|
||||
'url' => array('type' => 'varchar','precision' => '250')
|
||||
),
|
||||
'pk' => array(),
|
||||
'fk' => array(),
|
||||
'ix' => array(),
|
||||
'uc' => array()
|
||||
)
|
||||
);
|
62
cybro_profile/setup/tables_current.inc.php
Normal file
62
cybro_profile/setup/tables_current.inc.php
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* eGroupWare - Setup *
|
||||
* http://www.eGroupWare.org *
|
||||
* Created by eTemplates DB-Tools written by ralfbecker@outdoor-training.de *
|
||||
* -------------------------------------------- *
|
||||
* This program is free software; you can redistribute it and/or modify it *
|
||||
* under the terms of the GNU General Public License as published by the *
|
||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
||||
* option) any later version. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id: class.db_tools.inc.php,v 1.32 2005/11/10 12:27:04 ralfbecker Exp $ */
|
||||
|
||||
|
||||
$phpgw_baseline = array(
|
||||
'egw_cybro_profile_links' => array(
|
||||
'fd' => array(
|
||||
'id' => array('type' => 'auto'),
|
||||
'name' => array('type' => 'varchar','precision' => '100'),
|
||||
'description' => array('type' => 'text'),
|
||||
'url' => array('type' => 'varchar','precision' => '250')
|
||||
),
|
||||
'pk' => array('id'),
|
||||
'fk' => array(),
|
||||
'ix' => array(),
|
||||
'uc' => array()
|
||||
),
|
||||
'egw_cybro_profile_frontpage' => array(
|
||||
'fd' => array(
|
||||
'id' => array('type' => 'auto'),
|
||||
'title' => array('type' => 'varchar','precision' => '255'),
|
||||
'pagecontent' => array('type' => 'longtext')
|
||||
),
|
||||
'pk' => array('id'),
|
||||
'fk' => array(),
|
||||
'ix' => array(),
|
||||
'uc' => array()
|
||||
),
|
||||
'egw_cybro_profile_homepage' => array(
|
||||
'fd' => array(
|
||||
'id' => array('type' => 'auto'),
|
||||
'title' => array('type' => 'varchar','precision' => '254'),
|
||||
'content' => array('type' => 'longtext')
|
||||
),
|
||||
'pk' => array('id'),
|
||||
'fk' => array(),
|
||||
'ix' => array(),
|
||||
'uc' => array()
|
||||
),
|
||||
'egw_cybro_profile_contacts' => array(
|
||||
'fd' => array(
|
||||
'id' => array('type' => 'auto'),
|
||||
'name' => array('type' => 'varchar','precision' => '100'),
|
||||
'email' => array('type' => 'varchar','precision' => '100')
|
||||
),
|
||||
'pk' => array('id'),
|
||||
'fk' => array(),
|
||||
'ix' => array(),
|
||||
'uc' => array()
|
||||
)
|
||||
);
|
Loading…
Reference in New Issue
Block a user