Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Daniel Lennartz
vtigercrm
Commits
2d84eb7c
Commit
2d84eb7c
authored
7 years ago
by
Satish
Browse files
Options
Downloads
Patches
Plain Diff
Vtlib api to add settings link in CRM
parent
2f9e157c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/utils/VtlibUtils.php
+37
-0
37 additions, 0 deletions
include/utils/VtlibUtils.php
with
37 additions
and
0 deletions
include/utils/VtlibUtils.php
+
37
−
0
View file @
2d84eb7c
...
...
@@ -764,4 +764,41 @@ function vtlib_mime_content_type($filename) {
return
Vtiger_Functions
::
mime_content_type
(
$filename
);
}
function
vtlib_addSettingsLink
(
$linkName
,
$linkURL
,
$blockName
=
false
)
{
$success
=
true
;
$db
=
PearDatabase
::
getInstance
();
//Check entry name exist in DB or not
$result
=
$db
->
pquery
(
'SELECT 1 FROM vtiger_settings_field WHERE name=?'
,
array
(
$linkName
));
if
(
$result
&&
!
$db
->
num_rows
(
$result
))
{
$blockName
=
(
$blockName
)
?
$blockName
:
'LBL_OTHER_SETTINGS'
;
$blockId
=
getSettingsBlockId
(
$blockName
);
//Check block name exist in DB or not
//Add block in to DB if not exists
if
(
!
$blockId
)
{
$blockSeqResult
=
$db
->
pquery
(
'SELECT MAX(sequence) AS sequence FROM vtiger_settings_blocks'
,
array
());
if
(
$db
->
num_rows
(
$blockSeqResult
))
{
$blockId
=
$db
->
getUniqueID
(
'vtiger_settings_blocks'
);
$blockSequence
=
$db
->
query_result
(
$blockSeqResult
,
0
,
'sequence'
);
$db
->
pquery
(
'INSERT INTO vtiger_settings_blocks(blockid, label, sequence) VALUES(?,?,?)'
,
array
(
$blockId
,
'LBL_OTHER_SETTINGS'
,
$blockSequence
++
));
}
}
//Add settings field in to DB
if
(
$blockId
)
{
$fieldSeqResult
=
$db
->
pquery
(
'SELECT MAX(sequence) AS sequence FROM vtiger_settings_field WHERE blockid=?'
,
array
(
$blockId
));
if
(
$db
->
num_rows
(
$fieldSeqResult
))
{
$fieldId
=
$db
->
getUniqueID
(
'vtiger_settings_field'
);
$linkURL
=
(
$linkURL
)
?
$linkURL
:
''
;
$fieldSequence
=
$db
->
query_result
(
$fieldSeqResult
,
0
,
'sequence'
);
$db
->
pquery
(
'INSERT INTO vtiger_settings_field(fieldid, blockid, name, iconpath, description, linkto, sequence, active, pinned) VALUES(?,?,?,?,?,?,?,?,?)'
,
array
(
$fieldId
,
$blockId
,
$entryName
,
''
,
$entryName
,
$linkURL
,
$fieldSequence
++
,
0
,
0
));
}
}
else
{
$success
=
false
;
}
}
return
$success
;
}
?>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment