You are here

final protected function AppListBuilder::getCssIdForInfoRow in Apigee Edge 8

Returns the CSS ID of the app info row.

Parameters

\Drupal\apigee_edge\Entity\AppInterface $app: The app entity.

Return value

string The CSS ID of the info row.

3 calls to AppListBuilder::getCssIdForInfoRow()
AppListBuilder::buildInfoRow in src/Entity/ListBuilder/AppListBuilder.php
Builds an info row for an app in the entity listing.
AppListBuilder::buildWarningRow in src/Entity/ListBuilder/AppListBuilder.php
Builds a warning row for an app in the entity listing.
TeamAppListBuilder::buildInfoRow in modules/apigee_edge_teams/src/Entity/ListBuilder/TeamAppListBuilder.php
Builds an info row for an app in the entity listing.

File

src/Entity/ListBuilder/AppListBuilder.php, line 390

Class

AppListBuilder
General app list builder for developer and team apps.

Namespace

Drupal\apigee_edge\Entity\ListBuilder

Code

protected final function getCssIdForInfoRow(AppInterface $app) : string {
  return $this
    ->generateCssIdForApp($app) . '-info';
}