mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-07-28 23:36:57 +08:00
11 lines
289 B
PHP
11 lines
289 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' target='_blank'>$url</a>";
|
|
}
|