| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace UCore\DcatAdmin\Grid\Displayers;
- use Dcat\Admin\Grid\Displayers\Actions;
- class LineActions extends Actions
- {
- /**
- * @return string
- */
- protected function getViewLabel()
- {
- $label = trans('admin.show');
- return "<i title='{$label}' class=\"feather icon-eye grid-action-icon\">{$label}</i> ";
- }
- /**
- * @return string
- */
- protected function getEditLabel()
- {
- $label = trans('admin.edit');
- return "<i title='{$label}' class=\"feather icon-edit-1 grid-action-icon\">{$label}</i> ";
- }
- /**
- * @return string
- */
- protected function getQuickEditLabel()
- {
- $label = trans('admin.quick_edit');
- return "<i title='{$label}' class=\"feather icon-edit grid-action-icon\">{$label}</i> ";
- }
- /**
- * @return string
- */
- protected function getDeleteLabel()
- {
- $label = trans('admin.delete');
- return "<i class=\"feather icon-trash grid-action-icon\" title='{$label}'>{$label}</i> ";
- }
- }
|