Restore lost commit
This commit is contained in:
parent
3ab0b26d00
commit
09bb10b2a6
55
build/debian/control.debianbin
Executable file
55
build/debian/control.debianbin
Executable file
@ -0,0 +1,55 @@
|
|||||||
|
Package: dolibarr
|
||||||
|
Version: __VERSION__
|
||||||
|
Architecture: all
|
||||||
|
Maintainer: Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
Installed-Size: 61200
|
||||||
|
Depends: libapache2-mod-php5 | libapache2-mod-php5filter | php5-cgi | php5-fpm | php5,
|
||||||
|
php5-mysql | php5-mysqli,
|
||||||
|
php5-cli, php5-curl, php5-gd, php5-ldap, php-pear, php-mail-mime, php5-geoip,
|
||||||
|
libphp-adodb,
|
||||||
|
libnusoap-php,
|
||||||
|
libphp-pclzip,
|
||||||
|
libjs-jquery, libjs-jquery-ui, ckeditor,
|
||||||
|
ttf-dejavu-core,
|
||||||
|
xdg-utils,
|
||||||
|
mysql-server
|
||||||
|
Section: web
|
||||||
|
Priority: optional
|
||||||
|
Homepage: http://www.dolibarr.org
|
||||||
|
Description: Web based software to manage a small company or foundation
|
||||||
|
Dolibarr ERP & CRM is an easy to use open source/free software for small
|
||||||
|
and medium companies, foundations or freelances. It includes different
|
||||||
|
features for Enterprise Resource Planning (ERP) and Customer Relationship
|
||||||
|
Management (CRM) but also for different other activities.
|
||||||
|
It's a web software you can install as a standalone program or on any web
|
||||||
|
hosting provider to use it from anywhere with any web browser.
|
||||||
|
.
|
||||||
|
Dolibarr was designed to be easy to use. Only features you need are
|
||||||
|
visible, depending on which module were activated.
|
||||||
|
Most common used modules are:
|
||||||
|
.
|
||||||
|
Customers, Suppliers or Prospects directory,
|
||||||
|
Contacts directory,
|
||||||
|
Orders management,
|
||||||
|
Commercial proposals management,
|
||||||
|
Invoices management,
|
||||||
|
Products and services catalog,
|
||||||
|
Stock management,
|
||||||
|
Foundations members management,
|
||||||
|
Bank accounts management,
|
||||||
|
Point of Sale,
|
||||||
|
Payments management,
|
||||||
|
Commercial actions management,
|
||||||
|
Contracts management,
|
||||||
|
Standing orders management,
|
||||||
|
Shipping management,
|
||||||
|
Donations management,
|
||||||
|
Bookmarks management,
|
||||||
|
Mass Emailings,
|
||||||
|
Reports,
|
||||||
|
Wizards to export and import data,
|
||||||
|
LDAP connectivity,
|
||||||
|
PDF exports,
|
||||||
|
And a lot of more modules...
|
||||||
|
.
|
||||||
|
You can also add third parties external modules or develop yours.
|
||||||
53
htdocs/core/lib/holiday.lib.php
Normal file
53
htdocs/core/lib/holiday.lib.php
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
<?php
|
||||||
|
/* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
* or see http://www.gnu.org/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \file htdocs/core/lib/holiday.lib.php
|
||||||
|
* \brief Ensemble de fonctions de base pour les adherents
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return array head with list of tabs to view object informations
|
||||||
|
*
|
||||||
|
* @param Object $object Holiday
|
||||||
|
* @return array head
|
||||||
|
*/
|
||||||
|
function holiday_prepare_head($object)
|
||||||
|
{
|
||||||
|
global $langs, $conf, $user;
|
||||||
|
|
||||||
|
$h = 0;
|
||||||
|
$head = array();
|
||||||
|
|
||||||
|
$head[$h][0] = DOL_URL_ROOT . '/holiday/fiche.php?id='.$object->id;
|
||||||
|
$head[$h][1] = $langs->trans("Card");
|
||||||
|
$head[$h][2] = 'card';
|
||||||
|
$h++;
|
||||||
|
|
||||||
|
// Show more tabs from modules
|
||||||
|
// Entries must be declared in modules descriptor with line
|
||||||
|
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
|
||||||
|
// $this->tabs = array('entity:-tabname); to remove a tab
|
||||||
|
complete_head_from_modules($conf,$langs,$object,$head,$h,'holiday');
|
||||||
|
|
||||||
|
complete_head_from_modules($conf,$langs,$object,$head,$h,'holiday','remove');
|
||||||
|
|
||||||
|
return $head;
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
8
htdocs/langs/en_SA/propal.lang
Normal file
8
htdocs/langs/en_SA/propal.lang
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# Dolibarr language file - en_SA - propal
|
||||||
|
CHARSET=UTF-8
|
||||||
|
Proposals=Commercial Proposals
|
||||||
|
Proposal=Commercial Proposal
|
||||||
|
Prop=Commercial Proposals
|
||||||
|
CommercialProposal=Commercial Proposal
|
||||||
|
CommercialProposals=Commercial Proposals
|
||||||
|
DateEndPropal=Validity Ending Date
|
||||||
Loading…
Reference in New Issue
Block a user