Examples of YiiModule


Examples of org.nbphpcouncil.modules.php.yii.YiiModule

     *
     * @param phpModule
     * @return
     */
    public static FileObject getTestsDirectory(PhpModule phpModule) {
        YiiModule yiiModule = YiiModuleFactory.create(phpModule);
        if (yiiModule != null) {
            FileObject application = yiiModule.getApplication();
            if (application != null) {
                return application.getFileObject(TESTS_PATH);
            }
        }
        return null;
View Full Code Here

Examples of org.nbphpcouncil.modules.php.yii.YiiModule

     *
     * @param phpModule
     * @return
     */
    public static FileObject getThemesDirectory(PhpModule phpModule) {
        YiiModule yiiModule = YiiModuleFactory.create(phpModule);
        if (yiiModule != null) {
            return yiiModule.getThemes();
        }
        return null;
    }
View Full Code Here

Examples of org.nbphpcouncil.modules.php.yii.YiiModule

     * @param phpModule
     * @param path relative path from source directory
     * @return
     */
    public static FileObject getDirectory(PhpModule phpModule, String path) {
        YiiModule yiiModule = YiiModuleFactory.create(phpModule);
        FileObject sourceDirectory = yiiModule.getWebroot();
        if (sourceDirectory == null) {
            return null;
        }
        return sourceDirectory.getFileObject(path);
    }
View Full Code Here

Examples of org.nbphpcouncil.modules.php.yii.YiiModule

        int modulesIndex = path.lastIndexOf(modules);

        // contains module name
        int moduleIndex = path.indexOf("/", modulesIndex + modules.length()); // NOI18N
        String modulePath = path.substring(0, moduleIndex);
        YiiModule yiiModule = YiiModuleFactory.create(PhpModule.Factory.forFileObject(fileObject));
        FileObject webroot = yiiModule.getWebroot();
        if (webroot == null) {
            return null;
        }
        return webroot.getFileObject(modulePath);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.