Files
krolewskie-miody.pl/wp-content/plugins/userfeedback-lite/includes/survey-templates/class-userfeedback-survey-template-website-feedback.php
2026-04-28 15:13:50 +02:00

59 lines
921 B
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class UserFeedback_Survey_Template_Web_Feedback extends UserFeedback_Survey_Template {
/**
* @inheritdoc
*/
protected $template_key = 'web-feedback';
protected $categories = array(
'engagement'
);
protected $tags = array(
'most-popular',
);
/**
* @inheritdoc
*/
protected $is_pro = false;
/**
* @inheritdoc
*/
public function get_name() {
return __( 'Website Feedback', 'userfeedback-lite' );
}
/**
* @inheritdoc
*/
public function get_description() {
return array(
'title' => __( 'See what users think about your website.', 'userfeedback-lite' )
);
}
/**
* @inheritdoc
*
* @return array
*/
public function get_config() {
return array(
'questions' => array(
array(
'type' => 'long-text',
'title' => __( 'What can we do to improve this website?', 'userfeedback-lite' ),
),
),
);
}
}