Ferreteria/v0.3/class/fcDropInManager: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Jump to navigation Jump to search
(Created page with "{{page/code/class|ferreteria}} <source lang=php> class fcDropInManager extends cIOSource_internal { // METHOD: Goes through App object-factory so we don't get more than on...")
 
m (4 revisions imported: moving this project here)
 
(3 intermediate revisions by one other user not shown)
Line 18: Line 18:
}
}
</source>
</source>
* '''file''': <code>/dropin.php</code>
* '''file''': {{l/ferreteria/file|dropin.php}}
* '''extends''': {{l/ferreteria/class|cIOSource_internal}}
* '''extends''': {{l/ferreteria/class|cIOSource_internal}}
* '''row class''': {{l/ferreteria/class|fcrDropInModule}}
* '''row class''': {{l/ferreteria/class|fcrDropInModule}}

Latest revision as of 16:43, 22 May 2022

Template:Page/code/class

class fcDropInManager extends cIOSource_internal {
    // METHOD: Goes through App object-factory so we don't get more than one regardless of how it's requested.
    static public function Me() {
    // CEMENT
    protected function RowsClass() { return 'fcrDropInModule'; }
    // CEMENT
    public function GetFieldClassArray() {
    protected function SetModule(fcrDropInModule $oMod) {
    protected function HasModules() { return ($this->HasRows()); }
    // PUBLIC because outside callers sometimes need to know if a module exists or not
    public function HasModule($sName) {
    static public function ScanDropins($fsFolder,fcTreeNode $oMenu) {
    protected function CheckFolders($fsFolder,fcTreeNode $oMenu) {
    protected function CheckFolder($fsFolder,fcTreeNode $oMenu) {
    protected function ProcessIndex($fsIndex,fcTreeNode $oMenu) {
}