24 lines
482 B
PHP
24 lines
482 B
PHP
|
<?php
|
||
|
class PostTitlesTheme extends Themelet
|
||
|
{
|
||
|
public function get_title_set_html(string $title, bool $can_set): string
|
||
|
{
|
||
|
$html = "
|
||
|
<tr>
|
||
|
<th>Title</th>
|
||
|
<td>
|
||
|
".($can_set ? "
|
||
|
<span class='view'>".html_escape($title)."</span>
|
||
|
<span class='edit'>
|
||
|
<input class='edit' type='text' name='post_title' value='".html_escape($title)."' />
|
||
|
</span>
|
||
|
" : html_escape("
|
||
|
$title
|
||
|
"))."
|
||
|
</td>
|
||
|
</tr>
|
||
|
";
|
||
|
return $html;
|
||
|
}
|
||
|
}
|