PATH:
home
/
lab2454c
/
dansact.com
/
wp-content
/
plugins
/
mailchimp-for-wp
/
includes
/
forms
<?php /** * Class MC4WP_Form_Notice * * @ignore * @access private */ class MC4WP_Form_Notice { /** * @var string */ public $type = 'error'; /** * @var string */ public $text; /** * @param string $text * @param string $type */ public function __construct( $text, $type = 'error' ) { $this->text = $text; if ( ! empty( $type ) ) { $this->type = $type; } } /** * @return string */ public function __toString() { return $this->text; } }
[-] class-form-listener.php
[edit]
[-] class-form-message.php
[edit]
[+]
..
[-] class-widget.php
[edit]
[-] admin-functions.php
[edit]
[-] class-google-recaptcha.php
[edit]
[-] class-output-manager.php
[edit]
[-] class-form-manager.php
[edit]
[-] class-form-element.php
[edit]
[-] class-form-amp.php
[edit]
[-] class-form.php
[edit]
[-] class-form-previewer.php
[edit]
[-] class-admin.php
[edit]
[+]
views
[-] functions.php
[edit]
[-] class-form-tags.php
[edit]
[-] class-asset-manager.php
[edit]