Examples of PageEditorHelper


Examples of org.infoglue.deliver.controllers.kernel.impl.simple.PageEditorHelper

            locale = LanguageController.getController().getLocaleWithId(languageId);
         
          if(slotName == null)
            slotName = "";
         
        PageEditorHelper peh = new PageEditorHelper();
        String componentPropertiesDiv = peh.getComponentPropertiesDiv(db, principal, this.getRequest(), locale, repositoryId, siteNodeId, languageId, contentId, componentId, componentContentId, slotName, showSimple, originalUrl, showLegend, targetDiv);
        propertiesDiv.append(componentPropertiesDiv);
     
        commitTransaction(db);
      }
      catch (Exception e)
View Full Code Here

Examples of org.infoglue.deliver.controllers.kernel.impl.simple.PageEditorHelper

            locale = LanguageController.getController().getLocaleWithId(languageId);
         
          if(slotName == null)
            slotName = "";
         
        PageEditorHelper peh = new PageEditorHelper();
        String componentTasksDiv = peh.getComponentTasksDiv(db, principal, this.getRequest(), locale, repositoryId, siteNodeId, languageId, contentId, componentId, componentContentId, slotName, slotId, showSimple, originalFullURL, showLegend, targetDiv, slotClicked, treeItem);
        tasksDiv.append(componentTasksDiv);

        commitTransaction(db);
      }
      catch (Exception e)
View Full Code Here

Examples of org.infoglue.deliver.controllers.kernel.impl.simple.PageEditorHelper

            locale = LanguageController.getController().getLocaleWithId(languageId);
         
          if(slotName == null)
            slotName = "";
         
          PageEditorHelper peh = new PageEditorHelper();
        availableComponentDiv = peh.getAvailableComponentsDiv(db, principal, locale, repositoryId, languageId, componentContentId, slotName, showLegend, showComponentNames, targetDiv);
         
        commitTransaction(db);
      }
      catch (Exception e)
      {
View Full Code Here

Examples of org.infoglue.deliver.controllers.kernel.impl.simple.PageEditorHelper

            logger.info("cmsUserName:" + cmsUserName);
          Locale locale = this.getLocale();
          if(languageId != null)
            locale = LanguageController.getController().getLocaleWithId(languageId);
         
        PageEditorHelper peh = new PageEditorHelper();
        String componentStructure = peh.getComponentStructureDiv(db, principal, this.getRequest(), locale, repositoryId, siteNodeId, languageId, contentId, showSimple, originalFullURL, showLegend, targetDiv);
        componentStructureDiv.append(componentStructure);
     
        commitTransaction(db);
      }
      catch (Exception e)
View Full Code Here

Examples of org.infoglue.deliver.controllers.kernel.impl.simple.PageEditorHelper

        Integer parentComponentContentId = new Integer(parentComponentElement.getAttribute("contentId"));
        logger.info("componentContentId:" + componentContentId);
        logger.info("parentComponentContentId:" + parentComponentContentId);
        componentContentVO = ContentController.getContentController().getContentVOWithId(componentContentId);
       
        PageEditorHelper peh = new PageEditorHelper();
        List<Slot> slots = peh.getSlots(parentComponentContentId, languageId, this.getInfoGluePrincipal());
        boolean allowed = true;
        Iterator<Slot> slotsIterator = slots.iterator();
        while(slotsIterator.hasNext())
        {
          Slot slot = slotsIterator.next();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.