Java Code Examples for fr.adrienbrault.idea.symfony2plugin.Symfony2Icons#SYMFONY
The following examples show how to use
fr.adrienbrault.idea.symfony2plugin.Symfony2Icons#SYMFONY .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SymfonyInstallerProjectGenerator.java From idea-php-symfony2-plugin with MIT License | 4 votes |
@Override public Icon getLogo() { return Symfony2Icons.SYMFONY; }
Example 2
Source File: SymfonyWebDeploymentDownloadAction.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public SymfonyWebDeploymentDownloadAction() { super("Download dev files", "Download Symfony files from dev folder", Symfony2Icons.SYMFONY); }
Example 3
Source File: SymfonyContainerServiceBuilder.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public SymfonyContainerServiceBuilder() { super("Create Service", "Generate a new Service definition from class name", Symfony2Icons.SYMFONY); }
Example 4
Source File: TwigExtractLanguageAction.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public TwigExtractLanguageAction() { super("Extract Translation", "Extract Translation Key", Symfony2Icons.SYMFONY); }
Example 5
Source File: NewBundleCommandAction.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public NewBundleCommandAction() { super("Command", "Create Command Class", Symfony2Icons.SYMFONY); }
Example 6
Source File: NewBundleTwigExtensionAction.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public NewBundleTwigExtensionAction() { super("Twig Extension", "Create Twig Extension", Symfony2Icons.SYMFONY); }
Example 7
Source File: WebTestCaseGeneratorAction.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public WebTestCaseGeneratorAction() { super("Create WebTestCase", "Create WebTestCase class", Symfony2Icons.SYMFONY); }
Example 8
Source File: NewBundleControllerAction.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public NewBundleControllerAction() { super("Controller", "Create new Controller File", Symfony2Icons.SYMFONY); }
Example 9
Source File: NewBundleFormAction.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public NewBundleFormAction() { super("Form", "Create Form class", Symfony2Icons.SYMFONY); }
Example 10
Source File: NewBundleCompilerPass.java From idea-php-symfony2-plugin with MIT License | 4 votes |
public NewBundleCompilerPass() { super("CompilerPass", "Create CompilerPass class", Symfony2Icons.SYMFONY); }