PHP 클래스 ManaPHP\Mvc\View\Flash

상속: extends ManaPHP\Component, implements ManaPHP\Mvc\View\FlashInterface, implements ManaPHP\Mvc\View\Flash\AdapterInterface
파일 보기 프로젝트 열기: manaphp/manaphp 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_cssClasses array

공개 메소드들

메소드 설명
__construct ( array $cssClasses = [] ) \ManaPHP\Flash constructor
error ( string $message ) : void Shows a HTML error message
notice ( string $message ) : void Shows a HTML notice/information message
output ( boolean $remove = true ) : void Prints the messages in the session flasher
success ( string $message ) : void Shows a HTML success message
warning ( string $message ) : void Shows a HTML warning message

메소드 상세

__construct() 공개 메소드

\ManaPHP\Flash constructor
public __construct ( array $cssClasses = [] )
$cssClasses array

error() 공개 메소드

$flash->error('This is an error');
public error ( string $message ) : void
$message string
리턴 void

notice() 공개 메소드

$flash->notice('This is an information');
public notice ( string $message ) : void
$message string
리턴 void

output() 공개 메소드

Prints the messages in the session flasher
public output ( boolean $remove = true ) : void
$remove boolean
리턴 void

success() 공개 메소드

$flash->success('The process was finished successfully');
public success ( string $message ) : void
$message string
리턴 void

warning() 공개 메소드

$flash->warning('Hey, this is important');
public warning ( string $message ) : void
$message string
리턴 void

프로퍼티 상세

$_cssClasses 보호되어 있는 프로퍼티

protected array $_cssClasses
리턴 array