Layout.getStaticDir (subdir) |
return the directory where images of this layout
are stored
|
Sourcecode in Layout/objectFunctions.js:
1: function getStaticDir(subdir) { 2: var f = new Helma.File(this.getStaticPath(subdir)); 3: f.mkdir(); 4: return f; 5: } |