mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
12 lines
273 B
PHP
12 lines
273 B
PHP
<?php
|
|
function survey_url_display(Surveys $survey)
|
|
{
|
|
if ($survey->status != 'Public') {
|
|
return '';
|
|
}
|
|
global $sugar_config;
|
|
$url = $sugar_config['site_url'] . "/index.php?entryPoint=survey&id=" . $survey->id;
|
|
|
|
return "<a href='$url'>$url</a>";
|
|
}
|