# user-access-manager/2.1.7/src/Form/LabelTrait.php

User Access Manager, version 2.1.7. 24 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.1.7/code/src/Form/LabelTrait.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.1.7/raw/src/Form/LabelTrait.php
- Modified: 2017-11-04T23:45:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/user-access-manager/2.1.7/code/src/Form/LabelTrait.php#L10-L20`.

```php
<?php
namespace UserAccessManager\Form;

/**
 * Trait labelTrait
 *
 * @package UserAccessManager\Form
 */
trait LabelTrait
{
    /**
     * @var string
     */
    protected $label;

    /**
     * @return null|string
     */
    public function getLabel()
    {
        return $this->label;
    }
}

```
