Package org.netbeans.modules.php.fuel.modules.FuelPhpModule

Examples of org.netbeans.modules.php.fuel.modules.FuelPhpModule.FILE_TYPE


        this.targetFile = targetFile;
        this.offset = offset;

        // get file type
        FuelPhpModule fuelModule = FuelPhpModule.forPhpModule(phpModule);
        FILE_TYPE fileType = fuelModule.getFileType(targetFile);

        switch (fileType) {
            case CONTROLLER:
                status = FuelPhpControllerGoToStatus.getInstance();
                break;
View Full Code Here


        FuelPhpModule fuelModule = FuelPhpModule.forPhpModule(phpModule);
        FileObject testsDirectory = getDirectory(FILE_TYPE.TESTS);
        if (testsDirectory == null) {
            return Collections.emptyList();
        }
        FILE_TYPE fileType = fuelModule.getFileType(currentFile);
        String path = currentFile.getPath();
        String relativePath = "";
        int index = 0;
        switch (fileType) {
            case CONTROLLER:
View Full Code Here

TOP

Related Classes of org.netbeans.modules.php.fuel.modules.FuelPhpModule.FILE_TYPE

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.