All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 28s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m21s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 4m30s
Create Docker Image / Final Docker Image Manifest (push) Successful in 8s
43 lines
933 B
PHP
43 lines
933 B
PHP
<?php
|
|
|
|
namespace App\Classes\LDAP\Attribute;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
use App\Classes\LDAP\Attribute;
|
|
use App\Ldap\Entry;
|
|
use App\Traits\MD5Updates;
|
|
|
|
/**
|
|
* Represents an attribute whose values are passwords
|
|
*/
|
|
final class KrbPrincipalKey extends Attribute
|
|
{
|
|
use MD5Updates;
|
|
|
|
protected(set) bool $no_attr_tags = TRUE;
|
|
|
|
public function render(bool $edit=FALSE,bool $old=FALSE,bool $new=FALSE,string $langtag=Entry::TAG_NOTAG,bool $updated=FALSE): View
|
|
{
|
|
return view('components.attribute.krbprincipalkey')
|
|
->with('o',$this)
|
|
->with('edit',$edit)
|
|
->with('old',$old)
|
|
->with('new',$new)
|
|
->with('updated',$updated);
|
|
}
|
|
|
|
public function render_item_old(string $dotkey): ?string
|
|
{
|
|
return parent::render_item_old($dotkey)
|
|
? str_repeat('*',16)
|
|
: NULL;
|
|
}
|
|
|
|
public function render_item_new(string $dotkey): ?string
|
|
{
|
|
return parent::render_item_new($dotkey)
|
|
? str_repeat('*',16)
|
|
: NULL;
|
|
}
|
|
} |