final protected function AppListBuilder::getCssIdForWarningRow in Apigee Edge 8
Returns the CSS ID of the app warning row.
Parameters
\Drupal\apigee_edge\Entity\AppInterface $app: The app entity.
Return value
string The CSS ID of the warning row.
1 call to AppListBuilder::getCssIdForWarningRow()
- AppListBuilder::buildWarningRow in src/
Entity/ ListBuilder/ AppListBuilder.php - Builds a warning row for an app in the entity listing.
File
- src/
Entity/ ListBuilder/ AppListBuilder.php, line 403
Class
- AppListBuilder
- General app list builder for developer and team apps.
Namespace
Drupal\apigee_edge\Entity\ListBuilderCode
protected final function getCssIdForWarningRow(AppInterface $app) : string {
return $this
->generateCssIdForApp($app) . '-warning';
}