PHP 8.0.30
Preview: User.php Size: 1.22 KB
/home/certprox/zang.certproxywizard.com/wp/wp-content/plugins/fluentform/app/Models/User.php

<?php

namespace FluentForm\App\Models;

class User extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'users';

    /**
     * The accessors to append to the model's array form.
     *
     * @var array
     */
    protected $appends = ['id', 'name', 'email', 'permalink'];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = ['ID', 'user_email', 'user_pass', 'display_name'];

    /**
     * Get the id of the user.
     *
     * @return bool
     */
    public function getIdAttribute()
    {
        return (int) $this->attributes['ID'];
    }

    /**
     * Get the name of the user.
     *
     * @return string
     */
    public function getNameAttribute()
    {
        return $this->attributes['display_name'];
    }

    /**
     * Get the email of the user.
     *
     * @return string
     */
    public function getEmailAttribute()
    {
        return $this->attributes['user_email'];
    }

    /**
     * Get the permalink of the user.
     *
     * @return string
     */
    public function getPermalinkAttribute()
    {
        return get_edit_user_link($this->attributes['ID']);
    }
}

Directory Contents

Dirs: 1 × Files: 12

Name Size Perms Modified Actions
Traits DIR
- drwxr-xr-x 2026-03-30 10:23:19
Edit Download
6.45 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
843 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
690 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
9.15 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
577 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
2.99 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
566 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
564 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
703 B lrw-r--r-- 2026-03-30 10:23:19
Edit Download
12.47 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
2.75 KB lrw-r--r-- 2026-03-30 10:23:19
Edit Download
1.22 KB lrw-r--r-- 2026-03-30 10:23:20
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).