s */ class sapAdminPageSettingTextarea_2_7_4 extends sapAdminPageSetting_2_7_4 { /* * Size of this textarea * * This is put directly into a css class [size]-text, * and setting this to 'large' will link into WordPress's existing textarea * style for full-width textareas. */ public $size = 'small'; public $placeholder; public $sanitize_callback = 'wp_kses_post'; /** * Escape the value to display it safely HTML textarea fields * @since 1.0 */ public function esc_value( $val ) { return esc_textarea( $val ); } /** * Set the size of this textarea field * @since 1.0 */ public function set_size( $size ) { $this->size = esc_attr( $size ); } /** * Display this setting * @since 1.0 */ public function display_setting() { ?>
print_conditional_data(); ?>> display_disabled(); ?>
display_description(); } }