Airship\Cabin\Bridge\Landing\Author::create PHP Method

create() public method

Create a new author profile
public create ( )
    public function create()
    {
        $post = $this->post(new AuthorFilter());
        if (!empty($post['name'])) {
            if ($this->author->createAuthor($post)) {
                \Airship\redirect($this->airship_cabin_prefix . '/author');
            }
        }
        $this->lens('author/new');
    }