Ferreteria/v0.5/@cls/cDropinLink: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | @cls
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 20: Line 20:


===events: render===
===events: render===
* {{l/ver/meth|layout/event|OnRender}}
* {{l/ver/meth|layout/event|OnRender}} '''overrides''' {{l/ver/class|caNavElement}} by adding conditions (GetIsSelected() and GetIsAuthorized()) before calling {{l/ver/meth|layout/event|RenderOutput}} (shouldn't we just be modifying {{l/ver/meth|layout/event|GetShouldDisplay}}?)
* {{l/ver/meth|layout/event|GetShouldDisplay}} returns GetIsAuthorized()
* {{l/ver/meth|layout/event|GetShouldDisplay}} returns TRUE iff GetIsSelected() and GetIsAuthorized() are set
* RenderSelf() - this isn't a thing anymore; needs renaming/refactoring
* RenderSelf() - this isn't a thing anymore; needs renaming/refactoring
* {{l/ver/meth|layout/event|RenderOutput}} comes from {{l/ver/class|caNavElement}}
* {{l/ver/meth|layout/event|RenderOutput}} '''overrides''' {{l/ver/class|caNavElement}}; revision incomplete as of 2022-07-18
* {{l/ver/meth|layout/event|RenderDisplay}} comes from {{l/ver/class|caNavElement}}
* {{l/ver/meth|layout/event|RenderDisplay}} comes from {{l/ver/class|caNavElement}}
* {{l/ver/meth|layout/event|RenderValue}} comes from {{l/ver/class|cElement}}
* {{l/ver/meth|layout/event|RenderValue}} comes from {{l/ver/class|cElement}}
* {{l/ver/meth|layout/event|RenderBranch}} comes from {{l/ver/class|cElement}}
* {{l/ver/meth|layout/event|RenderBranch}} comes from {{l/ver/class|cElement}}
* {{l/ver/meth|layout/event|RenderTwigs}} comes from {{l/ver/class|cElement}}
* {{l/ver/meth|layout/event|RenderTwigs}} comes from {{l/ver/class|cElement}}

Latest revision as of 21:59, 18 July 2022

Ferreteria class ferret\cDropinLink

caDynamicLink
tRequiresPermit

cDropinLink cDropinAction

About

Each DropinLink object connects to a Feature object. It uses the OnRunCalculations() method in tRequiresPermit to calculate whether or not the current user has permission to access that Feature, and sets SetIsAuthorized() accordingly. GetIsAuthorized() returns the value of that flag.

Methods

events: general

  • OnRunCalculations() comes from tRequiresPermit
  • OnEventLocal(): if GetIsSelected() and GetIsAuthorized(), then InvokeFeature()
    • ...and also $oe->SetDoTwigs(FALSE), which is no longer supported and will generate an error if this code is actually run.

events: render