2015-12-09 14:50:17 -05:00
|
|
|
<?php namespace BookStack;
|
|
|
|
|
2016-02-27 14:24:42 -05:00
|
|
|
abstract class Ownable extends Model
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Relation for the user that created this entity.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function createdBy()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(User::class, 'created_by');
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Relation for the user that updated this entity.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function updatedBy()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(User::class, 'updated_by');
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
2016-02-27 14:24:42 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the class name.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function getClassName()
|
|
|
|
{
|
|
|
|
return strtolower(array_slice(explode('\\', static::class), -1, 1)[0]);
|
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|