getPagePath static method

String getPagePath(
  1. String appsName,
  2. String featureName,
  3. String pageName
)

Gets the path for a page directory.

Implementation

static String getPagePath(
    String appsName, String featureName, String pageName) {
  return join(getFeaturePath(appsName, featureName), 'lib', pageName);
}