コード例 #1
0
ファイル: HeaderTest.php プロジェクト: rvilbrandt/php-toolset
 /**
  * @covers Rvi\Html\Layout\Header::getTitleAsXhtml
  */
 public function testGetTitleAsXhtml()
 {
     $this->object->setTitle("test - 123 & test");
     $this->assertContains("<title>test - 123 & test</title>", $this->object->getTitleAsXhtml());
 }
コード例 #2
0
function index()
{
    Header::setTitle("Dashboard");
    View::Show();
}
コード例 #3
0
ファイル: userController.php プロジェクト: afliw/ponponpon
function login()
{
    Header::setTitle("login");
    View::Show();
}