Airship\Cabin\Bridge\Landing\Proto\FileManager::airshipLand PHP Method

airshipLand() public method

This function is called after the dependencies have been injected by AutoPilot. Think of it as a user-land constructor.
public airshipLand ( )
    public function airshipLand()
    {
        parent::airshipLand();
        $this->files = $this->blueprint('Files');
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * This function is called after the dependencies have been injected by
  * AutoPilot. Think of it as a user-land constructor.
  */
 public function airshipLand()
 {
     parent::airshipLand();
     $this->author = $this->blueprint('Author');
     $this->storeLensVar('active_link', 'bridge-link-authors');
     $this->storeLensVar('title', \__('Author\'s Files'));
 }
All Usage Examples Of Airship\Cabin\Bridge\Landing\Proto\FileManager::airshipLand