本文整理匯總了PHP中CF7DBPlugin::getOption方法的典型用法代碼示例。如果您正苦於以下問題:PHP CF7DBPlugin::getOption方法的具體用法?PHP CF7DBPlugin::getOption怎麽用?PHP CF7DBPlugin::getOption使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CF7DBPlugin
的用法示例。
在下文中一共展示了CF7DBPlugin::getOption方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: registerHooks
public function registerHooks()
{
add_action('wpcf7_before_send_mail', array(&$this, 'saveFormData'));
// Generate submit_time for CF7 mail. Some people complain this causes an error
// so this is now optional and off by default. Seems to be related to CF7
// checking its data against blacklist
if ($this->plugin->getOption('GenerateSubmitTimeInCF7Email', 'false') == 'true') {
add_action('wpcf7_posted_data', array(&$this, 'generateSubmitTimeForCF7'));
}
}
示例2: convertData
/**
* @param $cf7 WPCF7_ContactForm
* @return object
*/
public function convertData($cf7)
{
if (!isset($cf7->posted_data) && class_exists('WPCF7_Submission')) {
// Contact Form 7 version 3.9 removed $cf7->posted_data and now
// we have to retrieve it from an API
$submission = WPCF7_Submission::get_instance();
if ($submission) {
$data = array();
$data['title'] = $cf7->title();
$data['posted_data'] = $submission->get_posted_data();
$data['uploaded_files'] = $submission->uploaded_files();
$data['WPCF7_ContactForm'] = $cf7;
if ('true' == $this->plugin->getOption('IntegrateWithCF7SavePageTitle', 'false', true)) {
$data['posted_data']['Page Title'] = wpcf7_special_mail_tag('', '_post_title', '');
}
if ('true' == $this->plugin->getOption('IntegrateWithCF7SavePageUrl', 'false', true)) {
$data['posted_data']['Page URL'] = wpcf7_special_mail_tag('', '_post_url', '');
}
return (object) $data;
}
}
return $cf7;
}
示例3: queryPermitAllFunctions
/**
* @return bool
*/
public function queryPermitAllFunctions()
{
return $this->plugin->getOption('FunctionsInShortCodes', 'false') === 'true';
}