fix filter

This commit is contained in:
2024-08-28 15:39:35 +03:00
parent f20f408f12
commit 0960a7b1fd
5 changed files with 52 additions and 22 deletions

View File

@ -0,0 +1,11 @@
<?php
namespace Itguild\Tables\Filter;
class InputTextFilter extends \Itguild\Tables\Filter\Filter
{
public function fetch()
{
return "<td><input type='text' name='$this->name' value ='$this->value'></td>";
}
}