You are here

public function FieldablePanelsPaneType::query in Fieldable Panels Panes (FPP) 1.0.x

Return value

\Drupal\Core\Database\Query\SelectInterface

Overrides SqlBase::query

File

src/Plugin/migrate/source/d7/FieldablePanelsPaneType.php, line 20

Class

FieldablePanelsPaneType
Drupal 7 fieldable panels pane types source from database.

Namespace

Drupal\fieldable_panels_panes\Plugin\migrate\source\d7

Code

public function query() {
  return $this
    ->select('fieldable_panels_pane_type', 'fppt')
    ->fields('fppt');
}