# fluent-community/2.7.5/app/Models/SidebarLink.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 2.7.5. 30 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/2.7.5/code/app/Models/SidebarLink.php
- Raw: https://pluginprobe.com/plugins/fluent-community/2.7.5/raw/app/Models/SidebarLink.php
- Modified: 2025-06-19T14:01:16+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/fluent-community/2.7.5/code/app/Models/SidebarLink.php#L10-L20`.

```php
<?php

namespace FluentCommunity\App\Models;


/**
 *  SideBar Link Model - DB Model for Individual Links
 *
 *  Database Model
 *
 * @package FluentCommunity\App\Models
 *
 * @version 1.7.5
 */
class SidebarLink extends BaseSpace
{
    protected static $type = 'sidebar_link';

    public function defaultSettings()
    {
        return [
            'emoji'                => '',
            'shape_svg'            => '',
            'permalink'            => '',
            'membership_ids'     => []
        ];
    }

}

```
