15 lines
271 B
PHP
15 lines
271 B
PHP
<?php
|
|
|
|
class ExpandedLogHeader extends CWidget {
|
|
public $date;
|
|
public $caption = '';
|
|
public $link = '';
|
|
public $content = '';
|
|
|
|
public function run() {
|
|
if ($this->date == null)
|
|
$this->date = new DateTime('2000-01-01');
|
|
|
|
$this->render('expandedLogHeader');
|
|
}
|
|
} |