' .
'' .
'';
return "" . $temp . "";
}
// Generate button
$temp = get_popup($link, "$jslink",
$inner, $title, "mibew", $popup_options);
if (Settings::get('enabletracking')) {
$widget_data = array();
// URL of file with additional CSS rules for invitation popup
$widget_data['inviteStyle'] = $app_location . '/styles/invitations/' .
($invitationstyle
? $invitationstyle
: (Settings::get('invitationstyle'))
) . '/invite.css';
// Time between requests to the server in milliseconds
$widget_data['requestTimeout'] = Settings::get('updatefrequency_tracking')
* 1000;
// URL for requests
$widget_data['requestURL'] = $app_location . '/widget.php';
// Locale for invitation
$widget_data['locale'] = $locale;
// Name of the cookie to track user. Use if third-party cookie blocked
$widget_data['visitorCookieName'] = $visitorcookie;
// Build additional button code
$temp = preg_replace('/^(' .
'' .
'';
}
return "" . $temp . "";
}
function verifyparam_groupid($paramid)
{
global $errors;
$groupid = "";
$groupid = verifyparam($paramid, "/^\d{0,8}$/", "");
if ($groupid) {
$group = group_by_id($groupid);
if (!$group) {
$errors[] = getlocal("page.group.no_such");
$groupid = "";
}
}
return $groupid;
}
function get_groups_list()
{
$result = array();
$allgroups = get_all_groups();
$result[] = array('groupid' => '', 'vclocalname' => getlocal("page.gen_button.default_group"), 'level' => 0);
foreach ($allgroups as $g) {
$result[] = $g;
}
return $result;
}
function get_image_locales_map($localesdir)
{
$imageLocales = array();
$allLocales = get_available_locales();
foreach ($allLocales as $curr) {
$imagesDir = "$localesdir/$curr/button";
if ($handle = @opendir($imagesDir)) {
while (false !== ($file = readdir($handle))) {
if (preg_match("/^(\w+)_on.gif$/", $file, $matches)
&& is_file("$imagesDir/" . $matches[1] . "_off.gif")) {
$image = $matches[1];
if (!isset($imageLocales[$image])) {
$imageLocales[$image] = array();
}
$imageLocales[$image][] = $curr;
}
}
closedir($handle);
}
}
return $imageLocales;
}
?>