123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- namespace Dcat\Admin\Grid;
- use Illuminate\Support\Fluent;
- abstract class RowAction extends GridAction
- {
- /**
- * @var Fluent
- */
- protected $row;
- /**
- * @var Column
- */
- protected $column;
- /**
- * @var string
- */
- public $selectorPrefix = '.grid-row-action-';
- /**
- * Get primary key value of current row.
- *
- * @return mixed
- */
- public function getKey()
- {
- if ($this->row) {
- return $this->row->get($this->parent->getKeyName());
- }
- return parent::getKey();
- }
- /**
- * Set row model.
- *
- * @param mixed $key
- *
- * @return \Illuminate\Database\Eloquent\Model|mixed
- */
- public function row($key = null)
- {
- if (func_num_args() == 0) {
- return $this->row;
- }
- return $this->row->{$key};
- }
- /**
- * Set row model.
- *
- * @param Fluent $row
- *
- * @return $this
- */
- public function setRow($row)
- {
- $this->row = $row;
- return $this;
- }
- public function getRow()
- {
- return $this->row;
- }
- /**
- * @param Column $column
- *
- * @return $this
- */
- public function setColumn(Column $column)
- {
- $this->column = $column;
- return $this;
- }
- }
|