489495df
芝麻web文件管理
芝麻web文件管理V1.00
489495df tag
*
* @param string $button_label
* @param array|null $properties
*
* @return string
*/
public function htmlFormButton($button_label = 'Submit', ?array $properties = []): string
{
$tag_properties = '';
$properties = array_merge($properties, [
'data-sitekey' => $this->api_site_key,
'data-callback' => 'biscolabLaravelReCaptcha',
]);
if (empty($properties['class'])) {
$properties['class'] = 'g-recaptcha';
} else {
$properties['class'] .= ' g-recaptcha';
}
ksort($properties);
if ($properties) {
// $tag_properties = str_replace("=", '="',
// http_build_query($properties, null, '" ', PHP_QUERY_RFC3986)) . '"';
$temp_properties = [];
foreach ($properties as $k => $v) {
$temp_properties[] = $k . '="' . $v . '"';
}
$tag_properties = implode(" ", $temp_properties);
}
return ($this->version == 'invisible') ? '' : '';
}
/**
* Write script HTML tag in you HTML code
* Insert before tag
*
* @param array|null $configuration
*
* @return string
* @throws \Exception
*/
public function htmlScriptTagJsApi(?array $configuration = []): string
{
$html = parent::htmlScriptTagJsApi();
$form_id = Arr::get($configuration, 'form_id');
if (!$form_id) {
$form_id = $this->getFormId();
} else {
$this->form_id = $form_id;
}
$html .= '';
return $html;
}
/**
* @return string
* @throws \Exception
*/
public function getFormId(): string
{
if (!$this->form_id) {
$form_id = config('recaptcha.default_form_id');
} else {
$form_id = $this->form_id;
}
if (!$form_id) {
throw new InvalidConfigurationException("formId required");
}
return $form_id;
}
}