Fix: Removed warnings
This commit is contained in:
parent
c4650c6e01
commit
3d8a1dabec
File diff suppressed because it is too large
Load Diff
@ -51,6 +51,9 @@ class ActionsCardCompany extends ActionsCardCommon
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the title of card
|
* Return the title of card
|
||||||
|
*
|
||||||
|
* @param string $action Action code
|
||||||
|
* @return string Title
|
||||||
*/
|
*/
|
||||||
private function getTitle($action)
|
private function getTitle($action)
|
||||||
{
|
{
|
||||||
@ -70,6 +73,7 @@ class ActionsCardCompany extends ActionsCardCommon
|
|||||||
* Execute actions
|
* Execute actions
|
||||||
*
|
*
|
||||||
* @param int $socid Id of object (may be empty for creation)
|
* @param int $socid Id of object (may be empty for creation)
|
||||||
|
* @return int <0 if KO, >0 if OK
|
||||||
*/
|
*/
|
||||||
function doActions($socid)
|
function doActions($socid)
|
||||||
{
|
{
|
||||||
@ -82,6 +86,7 @@ class ActionsCardCompany extends ActionsCardCommon
|
|||||||
* Assign custom values for canvas (for example into this->tpl to be used by templates)
|
* Assign custom values for canvas (for example into this->tpl to be used by templates)
|
||||||
*
|
*
|
||||||
* @param string $action Type of action
|
* @param string $action Type of action
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
function assign_values($action)
|
function assign_values($action)
|
||||||
{
|
{
|
||||||
@ -208,14 +213,15 @@ class ActionsCardCompany extends ActionsCardCommon
|
|||||||
/**
|
/**
|
||||||
* Check permissions of a user to show a page and an object. Check read permission
|
* Check permissions of a user to show a page and an object. Check read permission
|
||||||
* If $_REQUEST['action'] defined, we also check write permission.
|
* If $_REQUEST['action'] defined, we also check write permission.
|
||||||
* @param user User to check
|
*
|
||||||
* @param features Features to check (in most cases, it's module name)
|
* @param User $user User to check
|
||||||
* @param objectid Object ID if we want to check permission on a particular record (optionnal)
|
* @param string $features Features to check (in most cases, it's module name)
|
||||||
* @param dbtablename Table name where object is stored. Not used if objectid is null (optionnal)
|
* @param int $objectid Object ID if we want to check permission on a particular record (optionnal)
|
||||||
* @param feature2 Feature to check (second level of permission)
|
* @param string $dbtablename Table name where object is stored. Not used if objectid is null (optionnal)
|
||||||
* @param dbt_keyfield Field name for socid foreign key if not fk_soc. (optionnal)
|
* @param string $feature2 Feature to check (second level of permission)
|
||||||
* @param dbt_select Field name for select if not rowid. (optionnal)
|
* @param string $dbt_keyfield Field name for socid foreign key if not fk_soc. (optionnal)
|
||||||
* @return int 1
|
* @param string $dbt_select Field name for select if not rowid. (optionnal)
|
||||||
|
* @return int 1
|
||||||
*/
|
*/
|
||||||
function restrictedArea($user, $features='societe', $objectid=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
|
function restrictedArea($user, $features='societe', $objectid=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
|
||||||
{
|
{
|
||||||
|
|||||||
@ -51,6 +51,9 @@ class ActionsCardIndividual extends ActionsCardCommon
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the title of card
|
* Return the title of card
|
||||||
|
*
|
||||||
|
* @param string $action Action code
|
||||||
|
* @return string Title
|
||||||
*/
|
*/
|
||||||
private function getTitle($action)
|
private function getTitle($action)
|
||||||
{
|
{
|
||||||
@ -67,9 +70,10 @@ class ActionsCardIndividual extends ActionsCardCommon
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute actions
|
* Execute actions
|
||||||
*
|
*
|
||||||
* @param int $socid Id of object (may be empty for creation)
|
* @param int $socid Id of object (may be empty for creation)
|
||||||
|
* @return int <0 if KO, >0 if OK
|
||||||
*/
|
*/
|
||||||
function doActions($socid)
|
function doActions($socid)
|
||||||
{
|
{
|
||||||
@ -79,9 +83,10 @@ class ActionsCardIndividual extends ActionsCardCommon
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Assign custom values for canvas (for example into this->tpl to be used by templates)
|
* Assign custom values for canvas (for example into this->tpl to be used by templates)
|
||||||
*
|
*
|
||||||
* @param string $action Type of action
|
* @param string $action Type of action
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
function assign_values($action)
|
function assign_values($action)
|
||||||
{
|
{
|
||||||
@ -107,14 +112,15 @@ class ActionsCardIndividual extends ActionsCardCommon
|
|||||||
/**
|
/**
|
||||||
* Check permissions of a user to show a page and an object. Check read permission
|
* Check permissions of a user to show a page and an object. Check read permission
|
||||||
* If $_REQUEST['action'] defined, we also check write permission.
|
* If $_REQUEST['action'] defined, we also check write permission.
|
||||||
* @param user User to check
|
*
|
||||||
* @param features Features to check (in most cases, it's module name)
|
* @param User $user User to check
|
||||||
* @param objectid Object ID if we want to check permission on a particular record (optionnal)
|
* @param string $features Features to check (in most cases, it's module name)
|
||||||
* @param dbtablename Table name where object is stored. Not used if objectid is null (optionnal)
|
* @param int $objectid Object ID if we want to check permission on a particular record (optionnal)
|
||||||
* @param feature2 Feature to check (second level of permission)
|
* @param string $dbtablename Table name where object is stored. Not used if objectid is null (optionnal)
|
||||||
* @param dbt_keyfield Field name for socid foreign key if not fk_soc. (optionnal)
|
* @param string $feature2 Feature to check (second level of permission)
|
||||||
* @param dbt_select Field name for select if not rowid. (optionnal)
|
* @param string $dbt_keyfield Field name for socid foreign key if not fk_soc. (optionnal)
|
||||||
* @return int 1
|
* @param string $dbt_select Field name for select if not rowid. (optionnal)
|
||||||
|
* @return int 1
|
||||||
*/
|
*/
|
||||||
function restrictedArea($user, $features='societe', $objectid=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
|
function restrictedArea($user, $features='societe', $objectid=0, $dbtablename='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid')
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user