LoadPageControls() public method

public LoadPageControls ( ) : void
return void
		protected override void OnInit(EventArgs e) {
			base.OnInit(e);

			pph = new PageProcessingHelper(this.Page);

			pph.LoadData();
			if (pph.ThePage != null) {
				theSite = pph.TheSite;
				pageContents = pph.ThePage;
				pageWidgets = pph.ThePageWidgets;
			}

			if (SiteData.IsWebView) {
				pph.LoadPageControls();
			}
		}
        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);

            pph = new PageProcessingHelper(this.Page);

            pph.LoadData();
            if (pph.ThePage != null)
            {
                theSite      = pph.TheSite;
                pageContents = pph.ThePage;
                pageWidgets  = pph.ThePageWidgets;
            }

            if (SiteData.IsWebView)
            {
                pph.LoadPageControls();
            }
        }