a68b7b34cf
- LicencseController.php: select attribute part1 from languages - adaptions for oai_datacite.xslt, doi_datacite.xslt and datasetxml2oai-pmh.xslt: for showing correct rights identifier add adding open access for CC-BY-4.0 and CC-BY-SA-4.0 licenses
42 lines
939 B
PHP
42 lines
939 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use App\Models\Dataset;
|
|
|
|
class License extends Model
|
|
{
|
|
protected $table = 'document_licences';
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'name_long',
|
|
'name',
|
|
'language',
|
|
'link_licence',
|
|
'link_logo',
|
|
'desc_text',
|
|
'desc_markup',
|
|
'comment_internal',
|
|
'mime_type',
|
|
'sort_order',
|
|
'language',
|
|
'active',
|
|
'pod_allowed'
|
|
];
|
|
|
|
// See the array called $touches? This is where you put all the relationships you want to get
|
|
// updated_at as soon as this Model is updated
|
|
protected $touches = ['datasets'];
|
|
|
|
public function datasets()
|
|
{
|
|
return $this->belongsToMany(Dataset::class, 'link_documents_licences', 'licence_id', 'document_id');
|
|
}
|
|
|
|
public function getCheckedAttribute()
|
|
{
|
|
return "false";
|
|
}
|
|
}
|