├── Copyright.txt ├── LICENSE.txt ├── PEAR.php ├── README.md ├── README.txt ├── Release_Notes.html ├── SPL-1.1.2.txt ├── SendSupportNotification.php ├── cache ├── images │ └── index.html ├── import │ └── index.html ├── index.html └── upload │ └── index.html ├── composer.json ├── composer.lock ├── config.db.php ├── config.performance.php ├── config.php ├── config.security.php ├── config.template.php ├── connection.php ├── copyright.html ├── copyright_en.html ├── cron ├── MailScanner.service ├── README-NewCronServiceSetup.txt ├── SendReminder.service ├── class.phpmailer.php ├── class.smtp.php ├── executecron.sh ├── intimateTaskStatus.bat ├── intimateTaskStatus.php ├── jobstartwindows.bat ├── language │ ├── phpmailer.lang-de.php │ └── phpmailer.lang-en.php ├── modules │ ├── README.txt │ ├── Reports │ │ └── ScheduleReports.service │ ├── SalesOrder │ │ └── RecurringInvoice.service │ └── com_vtiger_workflow │ │ └── com_vtiger_workflow.service ├── output.txt ├── schtasks.exe ├── send_mail.php ├── sendreminder.sh ├── sendsupportnotification.sh ├── vtigercron.bat └── vtigercron.sh ├── customerportal ├── Accounts │ ├── AccountDetail.php │ ├── index.html │ └── index.php ├── Acknowledgment.txt ├── Assets │ ├── AssetDetail.php │ ├── AssetsList.php │ ├── index.html │ └── index.php ├── Contacts │ ├── ContactsDetail.php │ ├── ContactsList.php │ ├── index.html │ └── index.php ├── CustomerAuthenticate.php ├── Documents │ ├── DocumentDetail.php │ ├── DocumentsList.php │ ├── index.html │ ├── index.php │ └── updateCount.php ├── Faq │ ├── FaqDetail.php │ ├── SaveFaqComment.php │ ├── Utils.php │ ├── index.html │ └── index.php ├── HelpDesk │ ├── NewTicket.php │ ├── SaveTicket.php │ ├── SearchForm.php │ ├── TicketDetail.php │ ├── TicketSearch.php │ ├── TicketsList.php │ ├── Utils.php │ ├── index.html │ └── index.php ├── INSTALLATION.txt ├── Invoice │ ├── InvoiceDetail.php │ ├── InvoiceList.php │ ├── index.html │ └── index.php ├── LICENSE_AGREEMENT.txt ├── MySettings.php ├── PortalConfig.php ├── Products │ ├── ProductDetail.php │ ├── ProductList.php │ ├── index.html │ └── index.php ├── Project │ ├── ProjectDetail.php │ ├── ProjectsList.php │ ├── index.html │ └── index.php ├── Quotes │ ├── QuoteDetail.php │ ├── QuotesList.php │ ├── index.html │ └── index.php ├── Services │ ├── ServiceDetail.php │ ├── ServiceList.php │ ├── index.html │ └── index.php ├── csrf-protect.php ├── css │ ├── AdminLTE.css │ ├── bootstrap-wysihtml5 │ │ └── bootstrap3-wysihtml5.min.css │ ├── bootstrap.min.css │ ├── custom.css │ ├── datepicker │ │ └── datepicker3.css │ ├── daterangepicker │ │ └── daterangepicker-bs3.css │ ├── dropdown.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ ├── images │ │ ├── ajax-loader.gif │ │ ├── file.gif │ │ ├── folder-closed.gif │ │ ├── folder.gif │ │ ├── minus.gif │ │ ├── plus.gif │ │ ├── treeview-black-line.gif │ │ ├── treeview-black.gif │ │ ├── treeview-default-line.gif │ │ ├── treeview-default.gif │ │ ├── treeview-famfamfam-line.gif │ │ ├── treeview-famfamfam.gif │ │ ├── treeview-gray-line.gif │ │ ├── treeview-gray.gif │ │ ├── treeview-red-line.gif │ │ └── treeview-red.gif │ ├── ionicons.min.css │ ├── jvectormap │ │ └── jquery-jvectormap-1.2.2.css │ ├── morris │ │ └── morris.css │ ├── style.css │ ├── styles.css │ └── treeview.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── footer.html ├── header.html ├── images │ ├── avatar3.png │ ├── category.gif │ ├── email.gif │ ├── faq.gif │ ├── favorite.gif │ ├── inner.gif │ ├── loginBg.gif │ ├── loginBgbig.gif │ ├── loginBgbig.jpg │ ├── loginBottomBg.gif │ ├── loginBottomURL.gif │ ├── loginBtnSignin.gif │ ├── loginSIBottomLeft.gif │ ├── loginSIBottomRight.gif │ ├── loginSITopLeft.gif │ ├── loginSITopRight.gif │ ├── loginTopBg.gif │ ├── loginTopShade.gif │ ├── loginVtigerCRM.gif │ ├── minus.gif │ ├── plus.gif │ ├── print.gif │ ├── products.gif │ ├── status.gif │ ├── tabSeperatorBg.gif │ └── vtiger-crm.gif ├── include.php ├── include │ ├── Zend │ │ ├── Exception.php │ │ ├── Json.php │ │ └── Json │ │ │ ├── Decoder.php │ │ │ ├── Encoder.php │ │ │ ├── Exception.php │ │ │ └── TODO.txt │ ├── htmlpurify │ │ ├── .INSTALL.swo │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CREDITS │ │ ├── Doxyfile │ │ ├── FOCUS │ │ ├── INSTALL │ │ ├── INSTALL.fr.utf8 │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── WHATSNEW │ │ ├── WYSIWYG │ │ ├── art │ │ │ ├── 1000passes.png │ │ │ ├── 100cases.png │ │ │ ├── favicon.ico │ │ │ ├── icon-16x16.png │ │ │ ├── icon-16x16.svg │ │ │ ├── icon-32x32.png │ │ │ ├── icon-32x32.svg │ │ │ ├── icon-64x64.png │ │ │ ├── logo-large.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ └── powered.png │ │ ├── extras │ │ │ ├── ConfigDoc │ │ │ │ └── HTMLXSLTProcessor.php │ │ │ ├── FSTools.php │ │ │ ├── FSTools │ │ │ │ └── File.php │ │ │ ├── HTMLPurifierExtras.auto.php │ │ │ ├── HTMLPurifierExtras.autoload.php │ │ │ ├── HTMLPurifierExtras.php │ │ │ └── README │ │ ├── library │ │ │ ├── HTMLPurifier.auto.php │ │ │ ├── HTMLPurifier.autoload.php │ │ │ ├── HTMLPurifier.func.php │ │ │ ├── HTMLPurifier.includes.php │ │ │ ├── HTMLPurifier.kses.php │ │ │ ├── HTMLPurifier.path.php │ │ │ ├── HTMLPurifier.php │ │ │ ├── HTMLPurifier.safe-includes.php │ │ │ └── HTMLPurifier │ │ │ │ ├── AttrCollections.php │ │ │ │ ├── AttrDef.php │ │ │ │ ├── AttrDef │ │ │ │ ├── CSS.php │ │ │ │ ├── CSS │ │ │ │ │ ├── AlphaValue.php │ │ │ │ │ ├── Background.php │ │ │ │ │ ├── BackgroundPosition.php │ │ │ │ │ ├── Border.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Composite.php │ │ │ │ │ ├── DenyElementDecorator.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── FontFamily.php │ │ │ │ │ ├── ImportantDecorator.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── ListStyle.php │ │ │ │ │ ├── Multiple.php │ │ │ │ │ ├── Number.php │ │ │ │ │ ├── Percentage.php │ │ │ │ │ ├── TextDecoration.php │ │ │ │ │ └── URI.php │ │ │ │ ├── Enum.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Bool.php │ │ │ │ │ ├── Class.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── FrameTarget.php │ │ │ │ │ ├── ID.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── LinkTypes.php │ │ │ │ │ ├── MultiLength.php │ │ │ │ │ ├── Nmtokens.php │ │ │ │ │ └── Pixels.php │ │ │ │ ├── Integer.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Switch.php │ │ │ │ ├── Text.php │ │ │ │ ├── URI.php │ │ │ │ └── URI │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── Email │ │ │ │ │ └── SimpleCheck.php │ │ │ │ │ ├── Host.php │ │ │ │ │ ├── IPv4.php │ │ │ │ │ └── IPv6.php │ │ │ │ ├── AttrTransform.php │ │ │ │ ├── AttrTransform │ │ │ │ ├── Background.php │ │ │ │ ├── BdoDir.php │ │ │ │ ├── BgColor.php │ │ │ │ ├── BoolToCSS.php │ │ │ │ ├── Border.php │ │ │ │ ├── EnumToCSS.php │ │ │ │ ├── ImgRequired.php │ │ │ │ ├── ImgSpace.php │ │ │ │ ├── Input.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Length.php │ │ │ │ ├── Name.php │ │ │ │ ├── NameSync.php │ │ │ │ ├── SafeEmbed.php │ │ │ │ ├── SafeObject.php │ │ │ │ ├── SafeParam.php │ │ │ │ ├── ScriptRequired.php │ │ │ │ └── Textarea.php │ │ │ │ ├── AttrTypes.php │ │ │ │ ├── AttrValidator.php │ │ │ │ ├── Bootstrap.php │ │ │ │ ├── CSSDefinition.php │ │ │ │ ├── ChildDef.php │ │ │ │ ├── ChildDef │ │ │ │ ├── Chameleon.php │ │ │ │ ├── Custom.php │ │ │ │ ├── Empty.php │ │ │ │ ├── Optional.php │ │ │ │ ├── Required.php │ │ │ │ ├── StrictBlockquote.php │ │ │ │ └── Table.php │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigSchema.php │ │ │ │ ├── ConfigSchema │ │ │ │ ├── Builder │ │ │ │ │ ├── ConfigSchema.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interchange.php │ │ │ │ ├── Interchange │ │ │ │ │ ├── Directive.php │ │ │ │ │ └── Id.php │ │ │ │ ├── InterchangeBuilder.php │ │ │ │ ├── Validator.php │ │ │ │ ├── ValidatorAtom.php │ │ │ │ ├── schema.ser │ │ │ │ └── schema │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ │ ├── Core.ColorKeywords.txt │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ │ ├── Core.Encoding.txt │ │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ ├── Core.LexerImpl.txt │ │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ │ ├── HTML.Allowed.txt │ │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ │ ├── HTML.AllowedElements.txt │ │ │ │ │ ├── HTML.AllowedModules.txt │ │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ ├── HTML.DefinitionID.txt │ │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ │ ├── Output.TidyFormat.txt │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ │ ├── URI.Base.txt │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ │ ├── URI.Host.txt │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ ├── URI.Munge.txt │ │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ │ ├── URI.MungeSecretKey.txt │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ └── info.ini │ │ │ │ ├── ContentSets.php │ │ │ │ ├── Context.php │ │ │ │ ├── Definition.php │ │ │ │ ├── DefinitionCache.php │ │ │ │ ├── DefinitionCache │ │ │ │ ├── Decorator.php │ │ │ │ ├── Decorator │ │ │ │ │ ├── Cleanup.php │ │ │ │ │ ├── Memory.php │ │ │ │ │ └── Template.php.in │ │ │ │ ├── Null.php │ │ │ │ ├── Serializer.php │ │ │ │ └── Serializer │ │ │ │ │ └── README │ │ │ │ ├── DefinitionCacheFactory.php │ │ │ │ ├── Doctype.php │ │ │ │ ├── DoctypeRegistry.php │ │ │ │ ├── ElementDef.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── EntityLookup.php │ │ │ │ ├── EntityLookup │ │ │ │ └── entities.ser │ │ │ │ ├── EntityParser.php │ │ │ │ ├── ErrorCollector.php │ │ │ │ ├── ErrorStruct.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Filter │ │ │ │ ├── ExtractStyleBlocks.php │ │ │ │ └── YouTube.php │ │ │ │ ├── Generator.php │ │ │ │ ├── HTMLDefinition.php │ │ │ │ ├── HTMLModule.php │ │ │ │ ├── HTMLModule │ │ │ │ ├── Bdo.php │ │ │ │ ├── CommonAttributes.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Forms.php │ │ │ │ ├── Hypertext.php │ │ │ │ ├── Image.php │ │ │ │ ├── Legacy.php │ │ │ │ ├── List.php │ │ │ │ ├── Name.php │ │ │ │ ├── NonXMLCommonAttributes.php │ │ │ │ ├── Object.php │ │ │ │ ├── Presentation.php │ │ │ │ ├── Proprietary.php │ │ │ │ ├── Ruby.php │ │ │ │ ├── SafeEmbed.php │ │ │ │ ├── SafeObject.php │ │ │ │ ├── Scripting.php │ │ │ │ ├── StyleAttribute.php │ │ │ │ ├── Tables.php │ │ │ │ ├── Target.php │ │ │ │ ├── Text.php │ │ │ │ ├── Tidy.php │ │ │ │ ├── Tidy │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── Proprietary.php │ │ │ │ │ ├── Strict.php │ │ │ │ │ ├── Transitional.php │ │ │ │ │ ├── XHTML.php │ │ │ │ │ └── XHTMLAndHTML4.php │ │ │ │ └── XMLCommonAttributes.php │ │ │ │ ├── HTMLModuleManager.php │ │ │ │ ├── IDAccumulator.php │ │ │ │ ├── Injector.php │ │ │ │ ├── Injector │ │ │ │ ├── AutoParagraph.php │ │ │ │ ├── DisplayLinkURI.php │ │ │ │ ├── Linkify.php │ │ │ │ ├── PurifierLinkify.php │ │ │ │ ├── RemoveEmpty.php │ │ │ │ └── SafeObject.php │ │ │ │ ├── Language.php │ │ │ │ ├── Language │ │ │ │ ├── classes │ │ │ │ │ └── en-x-test.php │ │ │ │ └── messages │ │ │ │ │ ├── en-x-test.php │ │ │ │ │ ├── en-x-testmini.php │ │ │ │ │ └── en.php │ │ │ │ ├── LanguageFactory.php │ │ │ │ ├── Length.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Lexer │ │ │ │ ├── DOMLex.php │ │ │ │ ├── DirectLex.php │ │ │ │ ├── PEARSax3.php │ │ │ │ └── PH5P.php │ │ │ │ ├── PercentEncoder.php │ │ │ │ ├── Printer.php │ │ │ │ ├── Printer │ │ │ │ ├── CSSDefinition.php │ │ │ │ ├── ConfigForm.css │ │ │ │ ├── ConfigForm.js │ │ │ │ ├── ConfigForm.php │ │ │ │ └── HTMLDefinition.php │ │ │ │ ├── PropertyList.php │ │ │ │ ├── PropertyListIterator.php │ │ │ │ ├── Strategy.php │ │ │ │ ├── Strategy │ │ │ │ ├── Composite.php │ │ │ │ ├── Core.php │ │ │ │ ├── FixNesting.php │ │ │ │ ├── MakeWellFormed.php │ │ │ │ ├── RemoveForeignElements.php │ │ │ │ └── ValidateAttributes.php │ │ │ │ ├── StringHash.php │ │ │ │ ├── StringHashParser.php │ │ │ │ ├── TagTransform.php │ │ │ │ ├── TagTransform │ │ │ │ ├── Font.php │ │ │ │ └── Simple.php │ │ │ │ ├── Token.php │ │ │ │ ├── Token │ │ │ │ ├── Comment.php │ │ │ │ ├── Empty.php │ │ │ │ ├── End.php │ │ │ │ ├── Start.php │ │ │ │ ├── Tag.php │ │ │ │ └── Text.php │ │ │ │ ├── TokenFactory.php │ │ │ │ ├── URI.php │ │ │ │ ├── URIDefinition.php │ │ │ │ ├── URIFilter.php │ │ │ │ ├── URIFilter │ │ │ │ ├── DisableExternal.php │ │ │ │ ├── DisableExternalResources.php │ │ │ │ ├── HostBlacklist.php │ │ │ │ ├── MakeAbsolute.php │ │ │ │ └── Munge.php │ │ │ │ ├── URIParser.php │ │ │ │ ├── URIScheme.php │ │ │ │ ├── URIScheme │ │ │ │ ├── ftp.php │ │ │ │ ├── http.php │ │ │ │ ├── https.php │ │ │ │ ├── mailto.php │ │ │ │ ├── news.php │ │ │ │ └── nntp.php │ │ │ │ ├── URISchemeRegistry.php │ │ │ │ ├── UnitConverter.php │ │ │ │ ├── VarParser.php │ │ │ │ ├── VarParser │ │ │ │ ├── Flexible.php │ │ │ │ └── Native.php │ │ │ │ └── VarParserException.php │ │ ├── maintenance │ │ │ ├── .htaccess │ │ │ ├── PH5P.patch │ │ │ ├── PH5P.php │ │ │ ├── add-vimline.php │ │ │ ├── common.php │ │ │ ├── config-scanner.php │ │ │ ├── flush-definition-cache.php │ │ │ ├── flush.php │ │ │ ├── generate-entity-file.php │ │ │ ├── generate-includes.php │ │ │ ├── generate-ph5p-patch.php │ │ │ ├── generate-schema-cache.php │ │ │ ├── generate-standalone.php │ │ │ ├── merge-library.php │ │ │ ├── old-extract-schema.php │ │ │ ├── old-remove-require-once.php │ │ │ ├── old-remove-schema-def.php │ │ │ ├── phpt-modifications.patch │ │ │ ├── remove-trailing-whitespace.php │ │ │ ├── rename-config.php │ │ │ ├── update-config.php │ │ │ └── update-freshmeat.php │ │ ├── package.php │ │ ├── phpdoc.ini │ │ ├── plugins │ │ │ ├── modx.txt │ │ │ └── phorum │ │ │ │ ├── .gitignore │ │ │ │ ├── Changelog │ │ │ │ ├── INSTALL │ │ │ │ ├── README │ │ │ │ ├── config.default.php │ │ │ │ ├── htmlpurifier.php │ │ │ │ ├── info.txt │ │ │ │ ├── init-config.php │ │ │ │ ├── migrate.bbcode.php │ │ │ │ ├── settings.php │ │ │ │ └── settings │ │ │ │ ├── form.php │ │ │ │ ├── migrate-sigs-form.php │ │ │ │ ├── migrate-sigs.php │ │ │ │ └── save.php │ │ ├── release1-update.php │ │ └── release2-tag.php │ └── utils │ │ └── utils.php ├── index.php ├── js │ ├── AdminLTE │ │ ├── app.js │ │ ├── dashboard.js │ │ └── demo.js │ ├── Treecookie.js │ ├── Treeview.js │ ├── acdropdown.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── cookies.js │ ├── general.js │ ├── getobject2.js │ ├── jquery-2.0.2.min.js │ ├── jquery-ui-1.10.3.js │ ├── jquery-ui-1.10.3.min.js │ ├── modomt.js │ ├── plugins │ │ ├── bootstrap-slider │ │ │ └── bootstrap-slider.js │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ └── bootstrap3-wysihtml5.js │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── bootstrap-colorpicker.min.js │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.js │ │ │ └── jquery.dataTables.js │ │ ├── datepicker │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── daterangepicker │ │ │ └── daterangepicker.js │ │ ├── flot │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.js │ │ │ └── jquery.flot.time.min.js │ │ ├── fullcalendar │ │ │ ├── fullcalendar.js │ │ │ └── fullcalendar.min.js │ │ ├── iCheck │ │ │ ├── icheck.js │ │ │ └── icheck.min.js │ │ ├── input-mask │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ ├── jquery.inputmask.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ ├── ionslider │ │ │ └── ion.rangeSlider.min.js │ │ ├── jqueryKnob │ │ │ └── jquery.knob.js │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── misc │ │ │ ├── html5shiv.js │ │ │ ├── jquery.ba-resize.min.js │ │ │ ├── jquery.placeholder.js │ │ │ ├── modernizr.min.js │ │ │ └── respond.min.js │ │ ├── morris │ │ │ ├── morris.js │ │ │ └── morris.min.js │ │ ├── slimScroll │ │ │ ├── jquery.slimscroll.js │ │ │ ├── jquery.slimscroll.min.js │ │ │ └── slimScroll.jquery.json │ │ ├── sparkline │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ └── prototype.js ├── language │ └── en_us.lang.php ├── libraries │ └── csrf-magic │ │ ├── NEWS.txt │ │ ├── README.txt │ │ ├── csrf-magic.js │ │ └── csrf-magic.php ├── login.php ├── nusoap │ └── lib │ │ ├── changelog │ │ ├── class.nusoap_base.php │ │ ├── class.soap_fault.php │ │ ├── class.soap_parser.php │ │ ├── class.soap_server.php │ │ ├── class.soap_transport_http.php │ │ ├── class.soap_val.php │ │ ├── class.soapclient.php │ │ ├── class.wsdl.php │ │ ├── class.wsdlcache.php │ │ ├── class.xmlschema.php │ │ ├── nusoap.php │ │ └── nusoapmime.php ├── supportpage.php └── version.php ├── data ├── CRMEntity.php ├── Tracker.php └── VTEntityDelta.php ├── db_update.php ├── favicon.ico ├── forgotPassword.php ├── htaccess.txt ├── include ├── ChartUtils.php ├── ComboStrings.php ├── ComboUtil.php ├── CustomFieldUtil.php ├── FormValidationUtil.php ├── InventoryHandler.php ├── InventoryPDFController.php ├── ListView │ ├── ListViewController.php │ ├── ListViewSession.php │ └── RelatedListViewSession.php ├── PopulateComboValues.php ├── QueryGenerator │ └── QueryGenerator.php ├── QueryParser │ ├── Component.php │ ├── Components │ │ ├── AlterOperation.php │ │ ├── Array2d.php │ │ ├── ArrayObj.php │ │ ├── CaseExpression.php │ │ ├── Condition.php │ │ ├── CreateDefinition.php │ │ ├── DataType.php │ │ ├── Expression.php │ │ ├── ExpressionArray.php │ │ ├── FunctionCall.php │ │ ├── GroupKeyword.php │ │ ├── IndexHint.php │ │ ├── IntoKeyword.php │ │ ├── JoinKeyword.php │ │ ├── Key.php │ │ ├── Limit.php │ │ ├── LockExpression.php │ │ ├── OptionsArray.php │ │ ├── OrderKeyword.php │ │ ├── ParameterDefinition.php │ │ ├── PartitionDefinition.php │ │ ├── Reference.php │ │ ├── RenameOperation.php │ │ ├── SetOperation.php │ │ ├── UnionKeyword.php │ │ └── WithKeyword.php │ ├── Context.php │ ├── Contexts │ │ ├── ContextMariaDb100000.php │ │ ├── ContextMariaDb100100.php │ │ ├── ContextMariaDb100200.php │ │ ├── ContextMariaDb100300.php │ │ ├── ContextMySql50000.php │ │ ├── ContextMySql50100.php │ │ ├── ContextMySql50500.php │ │ ├── ContextMySql50600.php │ │ ├── ContextMySql50700.php │ │ └── ContextMySql80000.php │ ├── Core.php │ ├── Exceptions │ │ ├── LexerException.php │ │ ├── LoaderException.php │ │ └── ParserException.php │ ├── Lexer.php │ ├── Parser.php │ ├── Statement.php │ ├── Statements │ │ ├── AlterStatement.php │ │ ├── AnalyzeStatement.php │ │ ├── BackupStatement.php │ │ ├── CallStatement.php │ │ ├── CheckStatement.php │ │ ├── ChecksumStatement.php │ │ ├── CreateStatement.php │ │ ├── DeleteStatement.php │ │ ├── DropStatement.php │ │ ├── ExplainStatement.php │ │ ├── InsertStatement.php │ │ ├── LoadStatement.php │ │ ├── LockStatement.php │ │ ├── MaintenanceStatement.php │ │ ├── NotImplementedStatement.php │ │ ├── OptimizeStatement.php │ │ ├── PurgeStatement.php │ │ ├── RenameStatement.php │ │ ├── RepairStatement.php │ │ ├── ReplaceStatement.php │ │ ├── RestoreStatement.php │ │ ├── SelectStatement.php │ │ ├── SetStatement.php │ │ ├── ShowStatement.php │ │ ├── TransactionStatement.php │ │ ├── TruncateStatement.php │ │ ├── UpdateStatement.php │ │ └── WithStatement.php │ ├── Token.php │ ├── TokensList.php │ ├── Tools │ │ ├── ContextGenerator.php │ │ └── TestGenerator.php │ ├── Translator.php │ ├── UtfString.php │ └── Utils │ │ ├── BufferedQuery.php │ │ ├── CLI.php │ │ ├── Error.php │ │ ├── Formatter.php │ │ ├── Misc.php │ │ ├── Query.php │ │ ├── Routine.php │ │ ├── Table.php │ │ └── Tokens.php ├── RelatedListView.php ├── Webservices │ ├── AuthToken.php │ ├── ConvertLead.php │ ├── Create.php │ ├── Custom │ │ ├── ChangePassword.php │ │ ├── NewParser.php │ │ ├── ProductRelation.php │ │ ├── VtigerCompanyDetails.php │ │ ├── getMultiRelations.php │ │ ├── getNewMultiRelations.php │ │ └── getRelatedDocuments.php │ ├── DataTransform.php │ ├── Delete.php │ ├── DeleteUser.php │ ├── DescribeObject.php │ ├── DescribeObjectPartial.php │ ├── EntityMeta.php │ ├── ExtendSession.php │ ├── GetUpdates.php │ ├── History.php │ ├── LineItem │ │ ├── RetrieveInventory.php │ │ ├── VtigerInventoryMeta.php │ │ ├── VtigerInventoryOperation.php │ │ ├── VtigerLineItemMeta.php │ │ ├── VtigerLineItemOperation.php │ │ ├── VtigerProductTaxesOperation.php │ │ ├── VtigerTaxMeta.php │ │ └── VtigerTaxOperation.php │ ├── Login.php │ ├── Logout.php │ ├── ModuleTypes.php │ ├── OperationManager.php │ ├── PreserveGlobal.php │ ├── Query.php │ ├── QueryParser.php │ ├── QueryRelated.php │ ├── RelatedModuleMeta.php │ ├── RelatedTypes.php │ ├── Relation.php │ ├── Retrieve.php │ ├── RetrieveDocAttachment.php │ ├── RetrieveRelated.php │ ├── Revise.php │ ├── SessionManager.php │ ├── State.php │ ├── Update.php │ ├── Utils.php │ ├── VTQL_Lexer.php │ ├── VTQL_Parser.php │ ├── VtigerActorOperation.php │ ├── VtigerCRMActorMeta.php │ ├── VtigerCRMObject.php │ ├── VtigerCRMObjectMeta.php │ ├── VtigerModuleOperation.php │ ├── VtigerWebserviceObject.php │ ├── WebServiceError.php │ ├── WebServiceErrorCode.php │ ├── WebserviceEntityOperation.php │ └── WebserviceField.php ├── Zend │ ├── Crypt.php │ ├── Crypt │ │ ├── DiffieHellman.php │ │ ├── DiffieHellman │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Hmac.php │ │ ├── Hmac │ │ │ └── Exception.php │ │ ├── Math.php │ │ ├── Math │ │ │ ├── BigInteger.php │ │ │ ├── BigInteger │ │ │ │ ├── Bcmath.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Gmp.php │ │ │ │ └── Interface.php │ │ │ └── Exception.php │ │ ├── Rsa.php │ │ └── Rsa │ │ │ ├── Exception.php │ │ │ ├── Key.php │ │ │ └── Key │ │ │ ├── Private.php │ │ │ └── Public.php │ ├── Exception.php │ ├── Gdata.php │ ├── Gdata │ │ ├── Analytics.php │ │ ├── Analytics │ │ │ ├── AccountEntry.php │ │ │ ├── AccountFeed.php │ │ │ ├── AccountQuery.php │ │ │ ├── DataEntry.php │ │ │ ├── DataFeed.php │ │ │ ├── DataQuery.php │ │ │ └── Extension │ │ │ │ ├── Dimension.php │ │ │ │ ├── Goal.php │ │ │ │ ├── Metric.php │ │ │ │ ├── Property.php │ │ │ │ └── TableId.php │ │ ├── App.php │ │ ├── App │ │ │ ├── AuthException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── Base.php │ │ │ ├── BaseMediaSource.php │ │ │ ├── CaptchaRequiredException.php │ │ │ ├── Entry.php │ │ │ ├── Exception.php │ │ │ ├── Extension.php │ │ │ ├── Extension │ │ │ │ ├── Author.php │ │ │ │ ├── Category.php │ │ │ │ ├── Content.php │ │ │ │ ├── Contributor.php │ │ │ │ ├── Control.php │ │ │ │ ├── Draft.php │ │ │ │ ├── Edited.php │ │ │ │ ├── Element.php │ │ │ │ ├── Email.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Icon.php │ │ │ │ ├── Id.php │ │ │ │ ├── Link.php │ │ │ │ ├── Logo.php │ │ │ │ ├── Name.php │ │ │ │ ├── Person.php │ │ │ │ ├── Published.php │ │ │ │ ├── Rights.php │ │ │ │ ├── Source.php │ │ │ │ ├── Subtitle.php │ │ │ │ ├── Summary.php │ │ │ │ ├── Text.php │ │ │ │ ├── Title.php │ │ │ │ ├── Updated.php │ │ │ │ └── Uri.php │ │ │ ├── Feed.php │ │ │ ├── FeedEntryParent.php │ │ │ ├── FeedSourceParent.php │ │ │ ├── HttpException.php │ │ │ ├── IOException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LoggingHttpClientAdapterSocket.php │ │ │ ├── MediaEntry.php │ │ │ ├── MediaFileSource.php │ │ │ ├── MediaSource.php │ │ │ ├── Util.php │ │ │ └── VersionException.php │ │ ├── AuthSub.php │ │ ├── Books.php │ │ ├── Books │ │ │ ├── CollectionEntry.php │ │ │ ├── CollectionFeed.php │ │ │ ├── Extension │ │ │ │ ├── AnnotationLink.php │ │ │ │ ├── BooksCategory.php │ │ │ │ ├── BooksLink.php │ │ │ │ ├── Embeddability.php │ │ │ │ ├── InfoLink.php │ │ │ │ ├── PreviewLink.php │ │ │ │ ├── Review.php │ │ │ │ ├── ThumbnailLink.php │ │ │ │ └── Viewability.php │ │ │ ├── VolumeEntry.php │ │ │ ├── VolumeFeed.php │ │ │ └── VolumeQuery.php │ │ ├── Calendar.php │ │ ├── Calendar │ │ │ ├── EventEntry.php │ │ │ ├── EventFeed.php │ │ │ ├── EventQuery.php │ │ │ ├── Extension │ │ │ │ ├── AccessLevel.php │ │ │ │ ├── Color.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── Link.php │ │ │ │ ├── QuickAdd.php │ │ │ │ ├── Selected.php │ │ │ │ ├── SendEventNotifications.php │ │ │ │ ├── Timezone.php │ │ │ │ └── WebContent.php │ │ │ ├── ListEntry.php │ │ │ └── ListFeed.php │ │ ├── ClientLogin.php │ │ ├── Contacts.php │ │ ├── Contacts │ │ │ ├── ContactEntry.php │ │ │ ├── ContactListFeed.php │ │ │ ├── ContactListFeed_1.php │ │ │ ├── Extension.php │ │ │ ├── Extension │ │ │ │ ├── Category.php │ │ │ │ ├── City.php │ │ │ │ ├── Country.php │ │ │ │ ├── Email.php │ │ │ │ ├── ExtendedProperty.php │ │ │ │ ├── FormattedAddress.php │ │ │ │ ├── Im.php │ │ │ │ ├── Name.php │ │ │ │ ├── Name │ │ │ │ │ ├── FamilyName.php │ │ │ │ │ ├── FullName.php │ │ │ │ │ ├── GivenName.php │ │ │ │ │ └── NamePrefix.php │ │ │ │ ├── Notes.php │ │ │ │ ├── OrgName.php │ │ │ │ ├── OrgTitle.php │ │ │ │ ├── Organization.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ ├── Pobox.php │ │ │ │ ├── Postcode.php │ │ │ │ ├── Primary.php │ │ │ │ ├── Region.php │ │ │ │ ├── Street.php │ │ │ │ └── StructuredPostalAddress.php │ │ │ ├── ListEntry.php │ │ │ ├── ListFeed.php │ │ │ └── Query.php │ │ ├── Docs.php │ │ ├── Docs │ │ │ ├── DocumentListEntry.php │ │ │ ├── DocumentListFeed.php │ │ │ └── Query.php │ │ ├── DublinCore.php │ │ ├── DublinCore │ │ │ └── Extension │ │ │ │ ├── Creator.php │ │ │ │ ├── Date.php │ │ │ │ ├── Description.php │ │ │ │ ├── Format.php │ │ │ │ ├── Identifier.php │ │ │ │ ├── Language.php │ │ │ │ ├── Publisher.php │ │ │ │ ├── Rights.php │ │ │ │ ├── Subject.php │ │ │ │ └── Title.php │ │ ├── Entry.php │ │ ├── Exif.php │ │ ├── Exif │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ ├── Distance.php │ │ │ │ ├── Exposure.php │ │ │ │ ├── FStop.php │ │ │ │ ├── Flash.php │ │ │ │ ├── FocalLength.php │ │ │ │ ├── ImageUniqueId.php │ │ │ │ ├── Iso.php │ │ │ │ ├── Make.php │ │ │ │ ├── Model.php │ │ │ │ ├── Tags.php │ │ │ │ └── Time.php │ │ │ └── Feed.php │ │ ├── Extension.php │ │ ├── Extension │ │ │ ├── AttendeeStatus.php │ │ │ ├── AttendeeType.php │ │ │ ├── Comments.php │ │ │ ├── EntryLink.php │ │ │ ├── EventStatus.php │ │ │ ├── ExtendedProperty.php │ │ │ ├── FeedLink.php │ │ │ ├── OpenSearchItemsPerPage.php │ │ │ ├── OpenSearchStartIndex.php │ │ │ ├── OpenSearchTotalResults.php │ │ │ ├── OriginalEvent.php │ │ │ ├── Rating.php │ │ │ ├── Recurrence.php │ │ │ ├── RecurrenceException.php │ │ │ ├── Reminder.php │ │ │ ├── Transparency.php │ │ │ ├── Visibility.php │ │ │ ├── When.php │ │ │ ├── Where.php │ │ │ └── Who.php │ │ ├── Feed.php │ │ ├── Gapps.php │ │ ├── Gapps │ │ │ ├── EmailListEntry.php │ │ │ ├── EmailListFeed.php │ │ │ ├── EmailListQuery.php │ │ │ ├── EmailListRecipientEntry.php │ │ │ ├── EmailListRecipientFeed.php │ │ │ ├── EmailListRecipientQuery.php │ │ │ ├── Error.php │ │ │ ├── Extension │ │ │ │ ├── EmailList.php │ │ │ │ ├── Login.php │ │ │ │ ├── Name.php │ │ │ │ ├── Nickname.php │ │ │ │ ├── Property.php │ │ │ │ └── Quota.php │ │ │ ├── GroupEntry.php │ │ │ ├── GroupFeed.php │ │ │ ├── GroupQuery.php │ │ │ ├── MemberEntry.php │ │ │ ├── MemberFeed.php │ │ │ ├── MemberQuery.php │ │ │ ├── NicknameEntry.php │ │ │ ├── NicknameFeed.php │ │ │ ├── NicknameQuery.php │ │ │ ├── OwnerEntry.php │ │ │ ├── OwnerFeed.php │ │ │ ├── OwnerQuery.php │ │ │ ├── Query.php │ │ │ ├── ServiceException.php │ │ │ ├── UserEntry.php │ │ │ ├── UserFeed.php │ │ │ └── UserQuery.php │ │ ├── Gbase.php │ │ ├── Gbase │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ └── BaseAttribute.php │ │ │ ├── Feed.php │ │ │ ├── ItemEntry.php │ │ │ ├── ItemFeed.php │ │ │ ├── ItemQuery.php │ │ │ ├── Query.php │ │ │ ├── SnippetEntry.php │ │ │ ├── SnippetFeed.php │ │ │ └── SnippetQuery.php │ │ ├── Geo.php │ │ ├── Geo │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ ├── GeoRssWhere.php │ │ │ │ ├── GmlPoint.php │ │ │ │ └── GmlPos.php │ │ │ └── Feed.php │ │ ├── Health.php │ │ ├── Health │ │ │ ├── Extension │ │ │ │ └── Ccr.php │ │ │ ├── ProfileEntry.php │ │ │ ├── ProfileFeed.php │ │ │ ├── ProfileListEntry.php │ │ │ ├── ProfileListFeed.php │ │ │ └── Query.php │ │ ├── HttpAdapterStreamingProxy.php │ │ ├── HttpAdapterStreamingSocket.php │ │ ├── HttpClient.php │ │ ├── Kind │ │ │ └── EventEntry.php │ │ ├── Media.php │ │ ├── Media │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ ├── MediaCategory.php │ │ │ │ ├── MediaContent.php │ │ │ │ ├── MediaCopyright.php │ │ │ │ ├── MediaCredit.php │ │ │ │ ├── MediaDescription.php │ │ │ │ ├── MediaGroup.php │ │ │ │ ├── MediaHash.php │ │ │ │ ├── MediaKeywords.php │ │ │ │ ├── MediaPlayer.php │ │ │ │ ├── MediaRating.php │ │ │ │ ├── MediaRestriction.php │ │ │ │ ├── MediaText.php │ │ │ │ ├── MediaThumbnail.php │ │ │ │ └── MediaTitle.php │ │ │ └── Feed.php │ │ ├── MediaMimeStream.php │ │ ├── MimeBodyString.php │ │ ├── MimeFile.php │ │ ├── Photos.php │ │ ├── Photos │ │ │ ├── AlbumEntry.php │ │ │ ├── AlbumFeed.php │ │ │ ├── AlbumQuery.php │ │ │ ├── CommentEntry.php │ │ │ ├── Extension │ │ │ │ ├── Access.php │ │ │ │ ├── AlbumId.php │ │ │ │ ├── BytesUsed.php │ │ │ │ ├── Checksum.php │ │ │ │ ├── Client.php │ │ │ │ ├── CommentCount.php │ │ │ │ ├── CommentingEnabled.php │ │ │ │ ├── Height.php │ │ │ │ ├── Id.php │ │ │ │ ├── Location.php │ │ │ │ ├── MaxPhotosPerAlbum.php │ │ │ │ ├── Name.php │ │ │ │ ├── Nickname.php │ │ │ │ ├── NumPhotos.php │ │ │ │ ├── NumPhotosRemaining.php │ │ │ │ ├── PhotoId.php │ │ │ │ ├── Position.php │ │ │ │ ├── QuotaCurrent.php │ │ │ │ ├── QuotaLimit.php │ │ │ │ ├── Rotation.php │ │ │ │ ├── Size.php │ │ │ │ ├── Thumbnail.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── User.php │ │ │ │ ├── Version.php │ │ │ │ ├── Weight.php │ │ │ │ └── Width.php │ │ │ ├── PhotoEntry.php │ │ │ ├── PhotoFeed.php │ │ │ ├── PhotoQuery.php │ │ │ ├── TagEntry.php │ │ │ ├── UserEntry.php │ │ │ ├── UserFeed.php │ │ │ └── UserQuery.php │ │ ├── Query.php │ │ ├── Spreadsheets.php │ │ ├── Spreadsheets │ │ │ ├── CellEntry.php │ │ │ ├── CellFeed.php │ │ │ ├── CellQuery.php │ │ │ ├── DocumentQuery.php │ │ │ ├── Extension │ │ │ │ ├── Cell.php │ │ │ │ ├── ColCount.php │ │ │ │ ├── Custom.php │ │ │ │ └── RowCount.php │ │ │ ├── ListEntry.php │ │ │ ├── ListFeed.php │ │ │ ├── ListQuery.php │ │ │ ├── SpreadsheetEntry.php │ │ │ ├── SpreadsheetFeed.php │ │ │ ├── WorksheetEntry.php │ │ │ └── WorksheetFeed.php │ │ ├── YouTube.php │ │ └── YouTube │ │ │ ├── ActivityEntry.php │ │ │ ├── ActivityFeed.php │ │ │ ├── CommentEntry.php │ │ │ ├── CommentFeed.php │ │ │ ├── ContactEntry.php │ │ │ ├── ContactFeed.php │ │ │ ├── Extension │ │ │ ├── AboutMe.php │ │ │ ├── Age.php │ │ │ ├── Books.php │ │ │ ├── Company.php │ │ │ ├── Control.php │ │ │ ├── CountHint.php │ │ │ ├── Description.php │ │ │ ├── Duration.php │ │ │ ├── FirstName.php │ │ │ ├── Gender.php │ │ │ ├── Hobbies.php │ │ │ ├── Hometown.php │ │ │ ├── LastName.php │ │ │ ├── Link.php │ │ │ ├── Location.php │ │ │ ├── MediaContent.php │ │ │ ├── MediaCredit.php │ │ │ ├── MediaGroup.php │ │ │ ├── MediaRating.php │ │ │ ├── Movies.php │ │ │ ├── Music.php │ │ │ ├── NoEmbed.php │ │ │ ├── Occupation.php │ │ │ ├── PlaylistId.php │ │ │ ├── PlaylistTitle.php │ │ │ ├── Position.php │ │ │ ├── Private.php │ │ │ ├── QueryString.php │ │ │ ├── Racy.php │ │ │ ├── Recorded.php │ │ │ ├── Relationship.php │ │ │ ├── ReleaseDate.php │ │ │ ├── School.php │ │ │ ├── State.php │ │ │ ├── Statistics.php │ │ │ ├── Status.php │ │ │ ├── Token.php │ │ │ ├── Uploaded.php │ │ │ ├── Username.php │ │ │ └── VideoId.php │ │ │ ├── InboxEntry.php │ │ │ ├── InboxFeed.php │ │ │ ├── MediaEntry.php │ │ │ ├── PlaylistListEntry.php │ │ │ ├── PlaylistListFeed.php │ │ │ ├── PlaylistVideoEntry.php │ │ │ ├── PlaylistVideoFeed.php │ │ │ ├── SubscriptionEntry.php │ │ │ ├── SubscriptionFeed.php │ │ │ ├── UserProfileEntry.php │ │ │ ├── VideoEntry.php │ │ │ ├── VideoFeed.php │ │ │ └── VideoQuery.php │ ├── Http │ │ ├── Client.php │ │ ├── Client │ │ │ ├── Adapter │ │ │ │ ├── Curl.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── Socket.php │ │ │ │ ├── Stream.php │ │ │ │ └── Test.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Response.php │ │ └── Response │ │ │ └── Stream.php │ ├── Json.php │ ├── Json │ │ ├── Decoder.php │ │ ├── Encoder.php │ │ ├── Exception.php │ │ └── TODO.txt │ ├── Loader.php │ ├── Oauth.php │ ├── Oauth │ │ ├── Client.php │ │ ├── Config.php │ │ ├── Config │ │ │ └── ConfigInterface.php │ │ ├── Consumer.php │ │ ├── Exception.php │ │ ├── Http.php │ │ ├── Http │ │ │ ├── AccessToken.php │ │ │ ├── RequestToken.php │ │ │ ├── UserAuthorization.php │ │ │ └── Utility.php │ │ ├── Signature │ │ │ ├── Hmac.php │ │ │ ├── Plaintext.php │ │ │ ├── Rsa.php │ │ │ └── SignatureAbstract.php │ │ ├── Token.php │ │ └── Token │ │ │ ├── Access.php │ │ │ ├── AuthorizedRequest.php │ │ │ └── Request.php │ ├── Registry.php │ ├── Uri.php │ ├── Uri │ │ ├── Exception.php │ │ └── Http.php │ ├── Validate │ │ ├── Abstract.php │ │ ├── Hostname.php │ │ ├── Hostname │ │ │ ├── Biz.php │ │ │ ├── Cn.php │ │ │ ├── Com.php │ │ │ └── Jp.php │ │ ├── Interface.php │ │ └── Ip.php │ └── Version.php ├── database │ ├── PearDatabase.php │ └── Postgres8.php ├── deprecated.txt ├── events │ ├── SqlResultIterator.inc │ ├── VTBatchData.inc │ ├── VTBatchEventTrigger.inc │ ├── VTEntityData.inc │ ├── VTEntityType.inc │ ├── VTEventCondition.php │ ├── VTEventConditionParserLexer.php │ ├── VTEventConditionParserParser.php │ ├── VTEventConditionSymbol.php │ ├── VTEventHandler.inc │ ├── VTEventTrigger.inc │ ├── VTEventsManager.inc │ ├── VTWSEntityType.inc │ └── include.inc ├── fields │ ├── CurrencyField.php │ ├── DateTimeField.php │ └── NumberField.php ├── logging.php ├── recaptcha │ └── recaptchalib.php ├── simplehtmldom │ └── simple_html_dom.php └── utils │ ├── CommonUtils.php │ ├── ConfigReader.php │ ├── DetailViewUtils.php │ ├── EditViewUtils.php │ ├── EmailTemplate.php │ ├── ExportRecords.php │ ├── ExportUtils.php │ ├── GetGroupUsers.php │ ├── GetParentGroups.php │ ├── GetUserGroups.php │ ├── GraphUtils.php │ ├── InventoryUtils.php │ ├── ListViewUtils.php │ ├── RecurringType.php │ ├── SearchUtils.php │ ├── UserInfoUtil.php │ ├── VTCacheUtils.php │ ├── VtlibUtils.php │ ├── encryption.php │ ├── export.php │ └── utils.php ├── includes ├── Loader.php ├── exceptions │ └── AppException.php ├── http │ ├── Request.php │ ├── Response.php │ └── Session.php ├── main │ └── WebUI.php └── runtime │ ├── BaseModel.php │ ├── Cache.php │ ├── Controller.php │ ├── EntryPoint.php │ ├── Globals.php │ ├── JavaScript.php │ ├── LanguageHandler.php │ ├── Theme.php │ ├── Viewer.php │ └── cache │ ├── Connector.php │ └── Connectors.php ├── index.php ├── installComposer.php ├── kcfinder ├── browse.php ├── config.php ├── core │ ├── .htaccess │ ├── autoload.php │ ├── browser.php │ ├── types │ │ ├── type_img.php │ │ └── type_mime.php │ └── uploader.php ├── css.php ├── doc │ ├── .htaccess │ ├── Changelog │ ├── LICENSE.GPL │ ├── LICENSE.LGPL │ └── README ├── js │ ├── browser │ │ ├── 0bject.js │ │ ├── clipboard.js │ │ ├── files.js │ │ ├── folders.js │ │ ├── init.js │ │ ├── joiner.php │ │ ├── misc.js │ │ ├── settings.js │ │ └── toolbar.js │ ├── helper.js │ ├── jquery.drag.js │ ├── jquery.js │ └── jquery.rightClick.js ├── js_localize.php ├── lang │ ├── .htaccess │ ├── bg.php │ ├── cs.php │ ├── de.php │ ├── en.php │ ├── es.php │ ├── fa.php │ ├── fr.php │ ├── hu.php │ ├── it.php │ ├── nl.php │ ├── pl.php │ ├── pt.php │ ├── ru.php │ ├── tr.php │ └── zh-cn.php ├── lib │ ├── .htaccess │ ├── class_gd.php │ ├── class_input.php │ ├── class_zipFolder.php │ ├── helper_dir.php │ ├── helper_file.php │ ├── helper_httpCache.php │ ├── helper_path.php │ └── helper_text.php ├── themes │ └── oxygen │ │ ├── about.txt │ │ ├── img │ │ ├── files │ │ │ ├── big │ │ │ │ ├── ..png │ │ │ │ ├── .image.png │ │ │ │ ├── avi.png │ │ │ │ ├── bat.png │ │ │ │ ├── bmp.png │ │ │ │ ├── bz2.png │ │ │ │ ├── ccd.png │ │ │ │ ├── cgi.png │ │ │ │ ├── com.png │ │ │ │ ├── csh.png │ │ │ │ ├── cue.png │ │ │ │ ├── deb.png │ │ │ │ ├── dll.png │ │ │ │ ├── doc.png │ │ │ │ ├── docx.png │ │ │ │ ├── exe.png │ │ │ │ ├── fla.png │ │ │ │ ├── flv.png │ │ │ │ ├── fon.png │ │ │ │ ├── gif.png │ │ │ │ ├── gz.png │ │ │ │ ├── htm.png │ │ │ │ ├── html.png │ │ │ │ ├── ini.png │ │ │ │ ├── iso.png │ │ │ │ ├── jar.png │ │ │ │ ├── java.png │ │ │ │ ├── jpeg.png │ │ │ │ ├── jpg.png │ │ │ │ ├── js.png │ │ │ │ ├── mds.png │ │ │ │ ├── mdx.png │ │ │ │ ├── mid.png │ │ │ │ ├── midi.png │ │ │ │ ├── mkv.png │ │ │ │ ├── mov.png │ │ │ │ ├── mp3.png │ │ │ │ ├── mpeg.png │ │ │ │ ├── mpg.png │ │ │ │ ├── nfo.png │ │ │ │ ├── nrg.png │ │ │ │ ├── ogg.png │ │ │ │ ├── pdf.png │ │ │ │ ├── php.png │ │ │ │ ├── phps.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── png.png │ │ │ │ ├── ppt.png │ │ │ │ ├── pptx.png │ │ │ │ ├── qt.png │ │ │ │ ├── rpm.png │ │ │ │ ├── rtf.png │ │ │ │ ├── sh.png │ │ │ │ ├── srt.png │ │ │ │ ├── sub.png │ │ │ │ ├── swf.png │ │ │ │ ├── tgz.png │ │ │ │ ├── tif.png │ │ │ │ ├── tiff.png │ │ │ │ ├── torrent.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── wav.png │ │ │ │ ├── wma.png │ │ │ │ ├── xls.png │ │ │ │ ├── xlsx.png │ │ │ │ └── zip.png │ │ │ └── small │ │ │ │ ├── ..png │ │ │ │ ├── .image.png │ │ │ │ ├── avi.png │ │ │ │ ├── bat.png │ │ │ │ ├── bmp.png │ │ │ │ ├── bz2.png │ │ │ │ ├── ccd.png │ │ │ │ ├── cgi.png │ │ │ │ ├── com.png │ │ │ │ ├── csh.png │ │ │ │ ├── cue.png │ │ │ │ ├── deb.png │ │ │ │ ├── dll.png │ │ │ │ ├── doc.png │ │ │ │ ├── docx.png │ │ │ │ ├── exe.png │ │ │ │ ├── fla.png │ │ │ │ ├── flv.png │ │ │ │ ├── fon.png │ │ │ │ ├── gif.png │ │ │ │ ├── gz.png │ │ │ │ ├── htm.png │ │ │ │ ├── html.png │ │ │ │ ├── ini.png │ │ │ │ ├── iso.png │ │ │ │ ├── jar.png │ │ │ │ ├── java.png │ │ │ │ ├── jpeg.png │ │ │ │ ├── jpg.png │ │ │ │ ├── js.png │ │ │ │ ├── mds.png │ │ │ │ ├── mdx.png │ │ │ │ ├── mid.png │ │ │ │ ├── midi.png │ │ │ │ ├── mkv.png │ │ │ │ ├── mov.png │ │ │ │ ├── mp3.png │ │ │ │ ├── mpeg.png │ │ │ │ ├── mpg.png │ │ │ │ ├── nfo.png │ │ │ │ ├── nrg.png │ │ │ │ ├── ogg.png │ │ │ │ ├── pdf.png │ │ │ │ ├── php.png │ │ │ │ ├── phps.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── png.png │ │ │ │ ├── ppt.png │ │ │ │ ├── pptx.png │ │ │ │ ├── qt.png │ │ │ │ ├── rpm.png │ │ │ │ ├── rtf.png │ │ │ │ ├── sh.png │ │ │ │ ├── srt.png │ │ │ │ ├── sub.png │ │ │ │ ├── swf.png │ │ │ │ ├── tgz.png │ │ │ │ ├── tif.png │ │ │ │ ├── tiff.png │ │ │ │ ├── torrent.png │ │ │ │ ├── ttf.png │ │ │ │ ├── txt.png │ │ │ │ ├── wav.png │ │ │ │ ├── wma.png │ │ │ │ ├── xls.png │ │ │ │ ├── xlsx.png │ │ │ │ └── zip.png │ │ ├── icons │ │ │ ├── about.png │ │ │ ├── clipboard-add.png │ │ │ ├── clipboard-clear.png │ │ │ ├── clipboard.png │ │ │ ├── copy.png │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── folder-new.png │ │ │ ├── maximize.png │ │ │ ├── move.png │ │ │ ├── refresh.png │ │ │ ├── rename.png │ │ │ ├── select.png │ │ │ ├── settings.png │ │ │ ├── upload.png │ │ │ └── view.png │ │ ├── loading.gif │ │ └── tree │ │ │ ├── denied.png │ │ │ ├── folder.png │ │ │ ├── folder_current.png │ │ │ ├── minus.png │ │ │ └── plus.png │ │ ├── init.js │ │ └── style.css ├── tpl │ ├── .htaccess │ ├── tpl__css.php │ ├── tpl__javascript.php │ ├── tpl_browser.php │ ├── tpl_chDir.php │ ├── tpl_deleteDir.php │ ├── tpl_error.php │ ├── tpl_expand.php │ ├── tpl_init.php │ └── tpl_renameDir.php ├── upload.php └── upload │ └── .htaccess ├── kundenportal ├── Accounts │ ├── AccountDetail.php │ ├── index.html │ └── index.php ├── Acknowledgment.txt ├── Assets │ ├── AssetDetail.php │ ├── AssetsList.php │ ├── index.html │ └── index.php ├── Contacts │ ├── ContactsDetail.php │ ├── ContactsList.php │ ├── index.html │ └── index.php ├── CustomerAuthenticate.php ├── Documents │ ├── DocumentDetail.php │ ├── DocumentsList.php │ ├── index.html │ ├── index.php │ └── updateCount.php ├── Faq │ ├── FaqDetail.php │ ├── SaveFaqComment.php │ ├── Utils.php │ ├── index.html │ └── index.php ├── HelpDesk │ ├── NewTicket.php │ ├── SaveTicket.php │ ├── SearchForm.php │ ├── TicketDetail.php │ ├── TicketSearch.php │ ├── TicketsList.php │ ├── Utils.php │ ├── index.html │ └── index.php ├── INSTALLATION.txt ├── Invoice │ ├── InvoiceDetail.php │ ├── InvoiceList.php │ ├── index.html │ └── index.php ├── LICENSE_AGREEMENT.txt ├── MySettings.php ├── PortalConfig.php ├── Products │ ├── ProductDetail.php │ ├── ProductList.php │ ├── index.html │ └── index.php ├── Project │ ├── ProjectDetail.php │ ├── ProjectsList.php │ ├── index.html │ └── index.php ├── Quotes │ ├── QuoteDetail.php │ ├── QuotesList.php │ ├── index.html │ └── index.php ├── Services │ ├── ServiceDetail.php │ ├── ServiceList.php │ ├── index.html │ └── index.php ├── config.csrf-secret.php ├── csrf-protect.php ├── css │ ├── AdminLTE.css │ ├── bootstrap-wysihtml5 │ │ └── bootstrap3-wysihtml5.min.css │ ├── bootstrap.min.css │ ├── custom.css │ ├── datepicker │ │ └── datepicker3.css │ ├── daterangepicker │ │ └── daterangepicker-bs3.css │ ├── dropdown.css │ ├── font-awesome.css │ ├── font-awesome.min.css │ ├── images │ │ ├── ajax-loader.gif │ │ ├── file.gif │ │ ├── folder-closed.gif │ │ ├── folder.gif │ │ ├── minus.gif │ │ ├── plus.gif │ │ ├── treeview-black-line.gif │ │ ├── treeview-black.gif │ │ ├── treeview-default-line.gif │ │ ├── treeview-default.gif │ │ ├── treeview-famfamfam-line.gif │ │ ├── treeview-famfamfam.gif │ │ ├── treeview-gray-line.gif │ │ ├── treeview-gray.gif │ │ ├── treeview-red-line.gif │ │ └── treeview-red.gif │ ├── ionicons.min.css │ ├── jvectormap │ │ └── jquery-jvectormap-1.2.2.css │ ├── morris │ │ └── morris.css │ ├── style.css │ ├── styles.css │ └── treeview.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── footer.html ├── header.html ├── images │ ├── avatar3.png │ ├── category.gif │ ├── crm-now_icon.ico │ ├── email.gif │ ├── faq.gif │ ├── favorite.gif │ ├── inner.gif │ ├── loginBg.gif │ ├── loginBgbig.gif │ ├── loginBgbig.jpg │ ├── loginBottomBg.gif │ ├── loginBottomURL.gif │ ├── loginBtnSignin.gif │ ├── loginSIBottomLeft.gif │ ├── loginSIBottomRight.gif │ ├── loginSITopLeft.gif │ ├── loginSITopRight.gif │ ├── loginTopBg.gif │ ├── loginTopShade.gif │ ├── loginVtigerCRM.gif │ ├── minus.gif │ ├── plus.gif │ ├── print.gif │ ├── products.gif │ ├── status.gif │ ├── tabSeperatorBg.gif │ └── vtiger-crm.gif ├── include.php ├── include │ ├── Zend │ │ ├── Exception.php │ │ ├── Json.php │ │ └── Json │ │ │ ├── Decoder.php │ │ │ ├── Encoder.php │ │ │ ├── Exception.php │ │ │ └── TODO.txt │ ├── htmlpurify │ │ ├── .INSTALL.swo │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CREDITS │ │ ├── Doxyfile │ │ ├── FOCUS │ │ ├── INSTALL │ │ ├── INSTALL.fr.utf8 │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ ├── VERSION │ │ ├── WHATSNEW │ │ ├── WYSIWYG │ │ ├── art │ │ │ ├── 1000passes.png │ │ │ ├── 100cases.png │ │ │ ├── favicon.ico │ │ │ ├── icon-16x16.png │ │ │ ├── icon-16x16.svg │ │ │ ├── icon-32x32.png │ │ │ ├── icon-32x32.svg │ │ │ ├── icon-64x64.png │ │ │ ├── logo-large.png │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ └── powered.png │ │ ├── extras │ │ │ ├── ConfigDoc │ │ │ │ └── HTMLXSLTProcessor.php │ │ │ ├── FSTools.php │ │ │ ├── FSTools │ │ │ │ └── File.php │ │ │ ├── HTMLPurifierExtras.auto.php │ │ │ ├── HTMLPurifierExtras.autoload.php │ │ │ ├── HTMLPurifierExtras.php │ │ │ └── README │ │ ├── library │ │ │ ├── HTMLPurifier.auto.php │ │ │ ├── HTMLPurifier.autoload.php │ │ │ ├── HTMLPurifier.func.php │ │ │ ├── HTMLPurifier.includes.php │ │ │ ├── HTMLPurifier.kses.php │ │ │ ├── HTMLPurifier.path.php │ │ │ ├── HTMLPurifier.php │ │ │ ├── HTMLPurifier.safe-includes.php │ │ │ └── HTMLPurifier │ │ │ │ ├── AttrCollections.php │ │ │ │ ├── AttrDef.php │ │ │ │ ├── AttrDef │ │ │ │ ├── CSS.php │ │ │ │ ├── CSS │ │ │ │ │ ├── AlphaValue.php │ │ │ │ │ ├── Background.php │ │ │ │ │ ├── BackgroundPosition.php │ │ │ │ │ ├── Border.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Composite.php │ │ │ │ │ ├── DenyElementDecorator.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── FontFamily.php │ │ │ │ │ ├── ImportantDecorator.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── ListStyle.php │ │ │ │ │ ├── Multiple.php │ │ │ │ │ ├── Number.php │ │ │ │ │ ├── Percentage.php │ │ │ │ │ ├── TextDecoration.php │ │ │ │ │ └── URI.php │ │ │ │ ├── Enum.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Bool.php │ │ │ │ │ ├── Class.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── FrameTarget.php │ │ │ │ │ ├── ID.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── LinkTypes.php │ │ │ │ │ ├── MultiLength.php │ │ │ │ │ ├── Nmtokens.php │ │ │ │ │ └── Pixels.php │ │ │ │ ├── Integer.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Switch.php │ │ │ │ ├── Text.php │ │ │ │ ├── URI.php │ │ │ │ └── URI │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── Email │ │ │ │ │ └── SimpleCheck.php │ │ │ │ │ ├── Host.php │ │ │ │ │ ├── IPv4.php │ │ │ │ │ └── IPv6.php │ │ │ │ ├── AttrTransform.php │ │ │ │ ├── AttrTransform │ │ │ │ ├── Background.php │ │ │ │ ├── BdoDir.php │ │ │ │ ├── BgColor.php │ │ │ │ ├── BoolToCSS.php │ │ │ │ ├── Border.php │ │ │ │ ├── EnumToCSS.php │ │ │ │ ├── ImgRequired.php │ │ │ │ ├── ImgSpace.php │ │ │ │ ├── Input.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Length.php │ │ │ │ ├── Name.php │ │ │ │ ├── NameSync.php │ │ │ │ ├── SafeEmbed.php │ │ │ │ ├── SafeObject.php │ │ │ │ ├── SafeParam.php │ │ │ │ ├── ScriptRequired.php │ │ │ │ └── Textarea.php │ │ │ │ ├── AttrTypes.php │ │ │ │ ├── AttrValidator.php │ │ │ │ ├── Bootstrap.php │ │ │ │ ├── CSSDefinition.php │ │ │ │ ├── ChildDef.php │ │ │ │ ├── ChildDef │ │ │ │ ├── Chameleon.php │ │ │ │ ├── Custom.php │ │ │ │ ├── Empty.php │ │ │ │ ├── Optional.php │ │ │ │ ├── Required.php │ │ │ │ ├── StrictBlockquote.php │ │ │ │ └── Table.php │ │ │ │ ├── Config.php │ │ │ │ ├── ConfigSchema.php │ │ │ │ ├── ConfigSchema │ │ │ │ ├── Builder │ │ │ │ │ ├── ConfigSchema.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interchange.php │ │ │ │ ├── Interchange │ │ │ │ │ ├── Directive.php │ │ │ │ │ └── Id.php │ │ │ │ ├── InterchangeBuilder.php │ │ │ │ ├── Validator.php │ │ │ │ ├── ValidatorAtom.php │ │ │ │ ├── schema.ser │ │ │ │ └── schema │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ │ ├── Core.ColorKeywords.txt │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ │ ├── Core.Encoding.txt │ │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ ├── Core.LexerImpl.txt │ │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ │ ├── HTML.Allowed.txt │ │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ │ ├── HTML.AllowedElements.txt │ │ │ │ │ ├── HTML.AllowedModules.txt │ │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ ├── HTML.DefinitionID.txt │ │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ │ ├── Output.TidyFormat.txt │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ │ ├── URI.Base.txt │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ │ ├── URI.Host.txt │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ ├── URI.Munge.txt │ │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ │ ├── URI.MungeSecretKey.txt │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ └── info.ini │ │ │ │ ├── ContentSets.php │ │ │ │ ├── Context.php │ │ │ │ ├── Definition.php │ │ │ │ ├── DefinitionCache.php │ │ │ │ ├── DefinitionCache │ │ │ │ ├── Decorator.php │ │ │ │ ├── Decorator │ │ │ │ │ ├── Cleanup.php │ │ │ │ │ ├── Memory.php │ │ │ │ │ └── Template.php.in │ │ │ │ ├── Null.php │ │ │ │ ├── Serializer.php │ │ │ │ └── Serializer │ │ │ │ │ └── README │ │ │ │ ├── DefinitionCacheFactory.php │ │ │ │ ├── Doctype.php │ │ │ │ ├── DoctypeRegistry.php │ │ │ │ ├── ElementDef.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── EntityLookup.php │ │ │ │ ├── EntityLookup │ │ │ │ └── entities.ser │ │ │ │ ├── EntityParser.php │ │ │ │ ├── ErrorCollector.php │ │ │ │ ├── ErrorStruct.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Filter │ │ │ │ ├── ExtractStyleBlocks.php │ │ │ │ └── YouTube.php │ │ │ │ ├── Generator.php │ │ │ │ ├── HTMLDefinition.php │ │ │ │ ├── HTMLModule.php │ │ │ │ ├── HTMLModule │ │ │ │ ├── Bdo.php │ │ │ │ ├── CommonAttributes.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Forms.php │ │ │ │ ├── Hypertext.php │ │ │ │ ├── Image.php │ │ │ │ ├── Legacy.php │ │ │ │ ├── List.php │ │ │ │ ├── Name.php │ │ │ │ ├── NonXMLCommonAttributes.php │ │ │ │ ├── Object.php │ │ │ │ ├── Presentation.php │ │ │ │ ├── Proprietary.php │ │ │ │ ├── Ruby.php │ │ │ │ ├── SafeEmbed.php │ │ │ │ ├── SafeObject.php │ │ │ │ ├── Scripting.php │ │ │ │ ├── StyleAttribute.php │ │ │ │ ├── Tables.php │ │ │ │ ├── Target.php │ │ │ │ ├── Text.php │ │ │ │ ├── Tidy.php │ │ │ │ ├── Tidy │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── Proprietary.php │ │ │ │ │ ├── Strict.php │ │ │ │ │ ├── Transitional.php │ │ │ │ │ ├── XHTML.php │ │ │ │ │ └── XHTMLAndHTML4.php │ │ │ │ └── XMLCommonAttributes.php │ │ │ │ ├── HTMLModuleManager.php │ │ │ │ ├── IDAccumulator.php │ │ │ │ ├── Injector.php │ │ │ │ ├── Injector │ │ │ │ ├── AutoParagraph.php │ │ │ │ ├── DisplayLinkURI.php │ │ │ │ ├── Linkify.php │ │ │ │ ├── PurifierLinkify.php │ │ │ │ ├── RemoveEmpty.php │ │ │ │ └── SafeObject.php │ │ │ │ ├── Language.php │ │ │ │ ├── Language │ │ │ │ ├── classes │ │ │ │ │ └── en-x-test.php │ │ │ │ └── messages │ │ │ │ │ ├── en-x-test.php │ │ │ │ │ ├── en-x-testmini.php │ │ │ │ │ └── en.php │ │ │ │ ├── LanguageFactory.php │ │ │ │ ├── Length.php │ │ │ │ ├── Lexer.php │ │ │ │ ├── Lexer │ │ │ │ ├── DOMLex.php │ │ │ │ ├── DirectLex.php │ │ │ │ ├── PEARSax3.php │ │ │ │ └── PH5P.php │ │ │ │ ├── PercentEncoder.php │ │ │ │ ├── Printer.php │ │ │ │ ├── Printer │ │ │ │ ├── CSSDefinition.php │ │ │ │ ├── ConfigForm.css │ │ │ │ ├── ConfigForm.js │ │ │ │ ├── ConfigForm.php │ │ │ │ └── HTMLDefinition.php │ │ │ │ ├── PropertyList.php │ │ │ │ ├── PropertyListIterator.php │ │ │ │ ├── Strategy.php │ │ │ │ ├── Strategy │ │ │ │ ├── Composite.php │ │ │ │ ├── Core.php │ │ │ │ ├── FixNesting.php │ │ │ │ ├── MakeWellFormed.php │ │ │ │ ├── RemoveForeignElements.php │ │ │ │ └── ValidateAttributes.php │ │ │ │ ├── StringHash.php │ │ │ │ ├── StringHashParser.php │ │ │ │ ├── TagTransform.php │ │ │ │ ├── TagTransform │ │ │ │ ├── Font.php │ │ │ │ └── Simple.php │ │ │ │ ├── Token.php │ │ │ │ ├── Token │ │ │ │ ├── Comment.php │ │ │ │ ├── Empty.php │ │ │ │ ├── End.php │ │ │ │ ├── Start.php │ │ │ │ ├── Tag.php │ │ │ │ └── Text.php │ │ │ │ ├── TokenFactory.php │ │ │ │ ├── URI.php │ │ │ │ ├── URIDefinition.php │ │ │ │ ├── URIFilter.php │ │ │ │ ├── URIFilter │ │ │ │ ├── DisableExternal.php │ │ │ │ ├── DisableExternalResources.php │ │ │ │ ├── HostBlacklist.php │ │ │ │ ├── MakeAbsolute.php │ │ │ │ └── Munge.php │ │ │ │ ├── URIParser.php │ │ │ │ ├── URIScheme.php │ │ │ │ ├── URIScheme │ │ │ │ ├── ftp.php │ │ │ │ ├── http.php │ │ │ │ ├── https.php │ │ │ │ ├── mailto.php │ │ │ │ ├── news.php │ │ │ │ └── nntp.php │ │ │ │ ├── URISchemeRegistry.php │ │ │ │ ├── UnitConverter.php │ │ │ │ ├── VarParser.php │ │ │ │ ├── VarParser │ │ │ │ ├── Flexible.php │ │ │ │ └── Native.php │ │ │ │ └── VarParserException.php │ │ ├── maintenance │ │ │ ├── .htaccess │ │ │ ├── PH5P.patch │ │ │ ├── PH5P.php │ │ │ ├── add-vimline.php │ │ │ ├── common.php │ │ │ ├── config-scanner.php │ │ │ ├── flush-definition-cache.php │ │ │ ├── flush.php │ │ │ ├── generate-entity-file.php │ │ │ ├── generate-includes.php │ │ │ ├── generate-ph5p-patch.php │ │ │ ├── generate-schema-cache.php │ │ │ ├── generate-standalone.php │ │ │ ├── merge-library.php │ │ │ ├── old-extract-schema.php │ │ │ ├── old-remove-require-once.php │ │ │ ├── old-remove-schema-def.php │ │ │ ├── phpt-modifications.patch │ │ │ ├── remove-trailing-whitespace.php │ │ │ ├── rename-config.php │ │ │ ├── update-config.php │ │ │ └── update-freshmeat.php │ │ ├── package.php │ │ ├── phpdoc.ini │ │ ├── plugins │ │ │ ├── modx.txt │ │ │ └── phorum │ │ │ │ ├── .gitignore │ │ │ │ ├── Changelog │ │ │ │ ├── INSTALL │ │ │ │ ├── README │ │ │ │ ├── config.default.php │ │ │ │ ├── htmlpurifier.php │ │ │ │ ├── info.txt │ │ │ │ ├── init-config.php │ │ │ │ ├── migrate.bbcode.php │ │ │ │ ├── settings.php │ │ │ │ └── settings │ │ │ │ ├── form.php │ │ │ │ ├── migrate-sigs-form.php │ │ │ │ ├── migrate-sigs.php │ │ │ │ └── save.php │ │ ├── release1-update.php │ │ └── release2-tag.php │ └── utils │ │ └── utils.php ├── index.php ├── js │ ├── AdminLTE │ │ ├── app.js │ │ ├── dashboard.js │ │ └── demo.js │ ├── Treecookie.js │ ├── Treeview.js │ ├── acdropdown.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── cookies.js │ ├── general.js │ ├── getobject2.js │ ├── jquery-2.0.2.min.js │ ├── jquery-ui-1.10.3.js │ ├── jquery-ui-1.10.3.min.js │ ├── modomt.js │ ├── plugins │ │ ├── bootstrap-slider │ │ │ └── bootstrap-slider.js │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ └── bootstrap3-wysihtml5.js │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── bootstrap-colorpicker.min.js │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.js │ │ │ └── jquery.dataTables.js │ │ ├── datepicker │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── daterangepicker │ │ │ └── daterangepicker.js │ │ ├── flot │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.js │ │ │ └── jquery.flot.time.min.js │ │ ├── fullcalendar │ │ │ ├── fullcalendar.js │ │ │ └── fullcalendar.min.js │ │ ├── iCheck │ │ │ ├── icheck.js │ │ │ └── icheck.min.js │ │ ├── input-mask │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ ├── jquery.inputmask.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ ├── ionslider │ │ │ └── ion.rangeSlider.min.js │ │ ├── jqueryKnob │ │ │ └── jquery.knob.js │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── misc │ │ │ ├── html5shiv.js │ │ │ ├── jquery.ba-resize.min.js │ │ │ ├── jquery.placeholder.js │ │ │ ├── modernizr.min.js │ │ │ └── respond.min.js │ │ ├── morris │ │ │ ├── morris.js │ │ │ └── morris.min.js │ │ ├── slimScroll │ │ │ ├── jquery.slimscroll.js │ │ │ ├── jquery.slimscroll.min.js │ │ │ └── slimScroll.jquery.json │ │ ├── sparkline │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ └── prototype.js ├── language │ ├── de_de.lang.php │ └── en_us.lang.php ├── libraries │ └── csrf-magic │ │ ├── NEWS.txt │ │ ├── README.txt │ │ ├── csrf-magic.js │ │ └── csrf-magic.php ├── login.php ├── nusoap │ └── lib │ │ ├── changelog │ │ ├── class.nusoap_base.php │ │ ├── class.soap_fault.php │ │ ├── class.soap_parser.php │ │ ├── class.soap_server.php │ │ ├── class.soap_transport_http.php │ │ ├── class.soap_val.php │ │ ├── class.soapclient.php │ │ ├── class.wsdl.php │ │ ├── class.wsdlcache.php │ │ ├── class.xmlschema.php │ │ ├── nusoap.php │ │ └── nusoapmime.php ├── supportpage.php ├── test │ ├── block_array.txt │ └── cache │ │ └── HTML │ │ └── 4.0.0,ddc9b993d7fc8d4a185e8dbf5b9a0996,1.ser └── version.php ├── languages ├── de_de │ ├── Accounts.php │ ├── Assets.php │ ├── Calendar.php │ ├── Campaigns.php │ ├── Contacts.php │ ├── Documents.php │ ├── EmailTemplates.php │ ├── Emails.php │ ├── Events.php │ ├── Faq.php │ ├── HelpDesk.php │ ├── Home.php │ ├── Import.php │ ├── Install.php │ ├── Invoice.php │ ├── Leads.php │ ├── MailManager.php │ ├── Mailchimp.php │ ├── Migration.php │ ├── Mobile.php │ ├── ModComments.php │ ├── ModTracker.php │ ├── PBXManager.php │ ├── Pdfsettings.php │ ├── Portal.php │ ├── Potentials.php │ ├── PriceBooks.php │ ├── Products.php │ ├── Project.php │ ├── ProjectMilestone.php │ ├── ProjectTask.php │ ├── PurchaseOrder.php │ ├── Quotes.php │ ├── Reports.php │ ├── Rss.php │ ├── SMSNotifier.php │ ├── SalesOrder.php │ ├── Search.php │ ├── ServiceContracts.php │ ├── Services.php │ ├── Settings │ │ ├── Accounts.php │ │ ├── CronTasks.php │ │ ├── Currency.php │ │ ├── CustomerPortal.php │ │ ├── EmailTemplate.php │ │ ├── EmailTemplates.php │ │ ├── Groups.php │ │ ├── LayoutEditor.php │ │ ├── Leads.php │ │ ├── ListViewColors.php │ │ ├── LoginHistory.php │ │ ├── MailConverter.php │ │ ├── ModuleManager.php │ │ ├── PBXManager.php │ │ ├── PickListDependency.php │ │ ├── Picklist.php │ │ ├── Profiles.php │ │ ├── Roles.php │ │ ├── SMSNotifier.php │ │ ├── Search.php │ │ ├── SharingAccess.php │ │ ├── Vtiger.php │ │ ├── Webforms.php │ │ ├── Workflows.php │ │ └── berliSoftphones.php │ ├── Users.php │ ├── Vendors.php │ ├── Vtiger.php │ ├── WSAPP.php │ ├── Webservices.php │ ├── berliSoftphones.php │ └── crmtogo.php └── en_us │ ├── Accounts.php │ ├── Calendar.php │ ├── Campaigns.php │ ├── Contacts.php │ ├── Documents.php │ ├── EmailTemplates.php │ ├── Emails.php │ ├── Events.php │ ├── Faq.php │ ├── HelpDesk.php │ ├── Home.php │ ├── Install.php │ ├── Invoice.php │ ├── Leads.php │ ├── MailManager.php │ ├── Mailchimp.php │ ├── Migration.php │ ├── Mobile.php │ ├── PBXManager.php │ ├── Portal.php │ ├── Potentials.php │ ├── PriceBooks.php │ ├── Products.php │ ├── Project.php │ ├── Proposal.php │ ├── PurchaseOrder.php │ ├── Quotes.php │ ├── RecycleBin.php │ ├── Reports.php │ ├── Rss.php │ ├── SMSNotifier.php │ ├── SalesOrder.php │ ├── ServiceContracts.php │ ├── Services.php │ ├── Settings │ ├── CronTasks.php │ ├── Currency.php │ ├── Groups.php │ ├── LayoutEditor.php │ ├── Leads.php │ ├── LoginHistory.php │ ├── MailConverter.php │ ├── ModuleManager.php │ ├── PBXManager.php │ ├── Payments.php │ ├── PickListDependency.php │ ├── Picklist.php │ ├── Profiles.php │ ├── Roles.php │ ├── SMSNotifier.php │ ├── SharingAccess.php │ ├── Vtiger.php │ ├── Webforms.php │ ├── Workflows.php │ └── berliSoftphones.php │ ├── Users.php │ ├── Vendors.php │ ├── Vtiger.php │ ├── Webservices.php │ ├── berliSoftphones.php │ └── crmtogo.php ├── layouts └── vlayout │ ├── modules │ ├── Accounts │ │ ├── AccountHierarchy.tpl │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── EditViewBlocks.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ │ └── uitypes │ │ │ └── Text.tpl │ ├── Calendar │ │ ├── CalendarSettings.tpl │ │ ├── CalendarSharedUsers.tpl │ │ ├── CalendarView.tpl │ │ ├── CalendarViewPreProcess.tpl │ │ ├── CalendarViewTypes.tpl │ │ ├── EditViewBlocks.tpl │ │ ├── Export.tpl │ │ ├── Import.tpl │ │ ├── ImportFinalResult.tpl │ │ ├── ImportResult.tpl │ │ ├── ListViewContents.tpl │ │ ├── MassEditForm.tpl │ │ ├── QuickCreate.tpl │ │ ├── QuickCreateFollowup.tpl │ │ ├── SharedCalendarView.tpl │ │ ├── SideBarWidgets.tpl │ │ ├── resources │ │ │ ├── CalendarView.js │ │ │ ├── Edit.js │ │ │ ├── List.js │ │ │ └── SharedCalendarView.js │ │ └── uitypes │ │ │ ├── ActivityPicklistFieldSearchView.tpl │ │ │ ├── DateTime.tpl │ │ │ └── StatusPickListFieldSearchView.tpl │ ├── Campaigns │ │ ├── RelatedList.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── List.js │ │ │ └── RelatedList.js │ ├── Contacts │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ │ └── uitypes │ │ │ └── Text.tpl │ ├── CustomView │ │ ├── EditView.tpl │ │ └── resources │ │ │ └── CustomView.js │ ├── Documents │ │ ├── AddFolder.tpl │ │ ├── MoveDocuments.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ └── List.js │ ├── Emails │ │ ├── EmailPreview.tpl │ │ ├── EmailPreviewPrint.tpl │ │ ├── SendEmailResult.tpl │ │ ├── resources │ │ │ ├── EmailPreview.js │ │ │ ├── Emails.js │ │ │ └── MassEdit.js │ │ └── showEmailContent.tpl │ ├── Events │ │ ├── DetailViewBlockView.tpl │ │ ├── EditViewBlocks.tpl │ │ └── uitypes │ │ │ ├── DateTime.tpl │ │ │ ├── FollowUp.tpl │ │ │ ├── Multireference.tpl │ │ │ └── MultireferenceDetailView.tpl │ ├── HelpDesk │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── SummaryViewWidgets.tpl │ │ └── dashboards │ │ │ ├── OpenTickets.tpl │ │ │ └── TicketsByStatus.tpl │ ├── Home │ │ ├── Index.tpl │ │ ├── IndexViewPreProcess.tpl │ │ └── dashboards │ │ │ ├── DashBoardPostProcess.tpl │ │ │ └── DashBoardPreProcess.tpl │ ├── Install │ │ ├── InstallPostProcess.tpl │ │ ├── InstallPreProcess.tpl │ │ ├── Step1.tpl │ │ ├── Step2.tpl │ │ ├── Step3.tpl │ │ ├── Step4.tpl │ │ ├── Step5.tpl │ │ ├── Step6.tpl │ │ ├── Step7.tpl │ │ └── resources │ │ │ ├── Index.js │ │ │ ├── css │ │ │ ├── mkCheckbox.css │ │ │ └── style.css │ │ │ └── images │ │ │ └── check_radio_sprite.png │ ├── Inventory │ │ ├── EditView.tpl │ │ ├── EditViewBlocks.tpl │ │ ├── LineItemsContent.tpl │ │ ├── LineItemsDetail.tpl │ │ ├── LineItemsEdit.tpl │ │ ├── PopupContents.tpl │ │ ├── PopupEntries.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ └── Popup.js │ ├── Invoice │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── Leads │ │ ├── ConvertLead.tpl │ │ ├── ConvertLeadError.tpl │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── dashboards │ │ │ ├── LeadsByIndustry.tpl │ │ │ ├── LeadsBySource.tpl │ │ │ ├── LeadsByStatus.tpl │ │ │ └── LeadsCreated.tpl │ │ └── resources │ │ │ └── Detail.js │ ├── Migration │ │ ├── MigrationStep1.tpl │ │ ├── MigrationStep2.tpl │ │ ├── css │ │ │ ├── mkCheckbox.css │ │ │ └── style.css │ │ └── resources │ │ │ └── Index.js │ ├── Portal │ │ ├── DetailView.tpl │ │ ├── EditView.tpl │ │ ├── ListViewContents.tpl │ │ ├── ListViewHeader.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── List.js │ ├── Potentials │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── SummaryViewWidgets.tpl │ │ ├── dashboards │ │ │ ├── Forecast.tpl │ │ │ ├── FunnelAmount.tpl │ │ │ ├── GroupBySalesPerson.tpl │ │ │ ├── GroupBySalesStage.tpl │ │ │ ├── PipelinedAmountPerSalesPerson.tpl │ │ │ ├── TopPotentials.tpl │ │ │ ├── TopPotentialsContents.tpl │ │ │ └── TotalRevenuePerSalesPerson.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── PriceBooks │ │ ├── ListPriceUpdate.tpl │ │ ├── ProductPriceBookPopup.tpl │ │ ├── ProductPriceBookPopupContents.tpl │ │ ├── RelatedList.tpl │ │ ├── resources │ │ │ ├── Detail.js │ │ │ ├── Popup.js │ │ │ ├── PriceBooksPopup.js │ │ │ └── RelatedList.js │ │ └── uitypes │ │ │ └── Boolean.tpl │ ├── Products │ │ ├── MoreCurrenciesList.tpl │ │ ├── PopupEntries.tpl │ │ ├── PriceBookProductPopup.tpl │ │ ├── PriceBookProductPopupContents.tpl │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ ├── ProductsPopup.js │ │ │ └── RelatedList.js │ ├── Project │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── SummaryViewWidgets.tpl │ │ ├── SummaryWidgets.tpl │ │ └── resources │ │ │ └── Detail.js │ ├── PurchaseOrder │ │ ├── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ │ └── uitypes │ │ │ └── Text.tpl │ ├── Quotes │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── Reports │ │ ├── ChartEditStep1.tpl │ │ ├── ChartEditStep2.tpl │ │ ├── ChartEditStep3.tpl │ │ ├── ChartReportContents.tpl │ │ ├── ChartReportHeader.tpl │ │ ├── EditChartHeader.tpl │ │ ├── EditFolder.tpl │ │ ├── EditHeader.tpl │ │ ├── ListViewContents.tpl │ │ ├── ListViewFolders.tpl │ │ ├── ListViewHeader.tpl │ │ ├── MoveReports.tpl │ │ ├── PrintReport.tpl │ │ ├── RelatedFields.tpl │ │ ├── ReportContents.tpl │ │ ├── ReportHeader.tpl │ │ ├── ScheduledReportsList.tpl │ │ ├── ShowCampaignListforReports.tpl │ │ ├── ShowCleverReachListforReports.tpl │ │ ├── ShowMailChimpListforReports.tpl │ │ ├── ShowVerteilerListforReports.tpl │ │ ├── Step1.tpl │ │ ├── chartReportHiddenContents.tpl │ │ ├── resources │ │ │ ├── ChartDetail.js │ │ │ ├── ChartEdit.js │ │ │ ├── ChartEdit1.js │ │ │ ├── ChartEdit2.js │ │ │ ├── ChartEdit3.js │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ ├── Edit1.js │ │ │ ├── Edit2.js │ │ │ ├── Edit3.js │ │ │ ├── List.js │ │ │ └── Reports.js │ │ ├── step2.tpl │ │ └── step3.tpl │ ├── Rss │ │ ├── ListViewContents.tpl │ │ ├── ListViewHeader.tpl │ │ ├── RssAddForm.tpl │ │ ├── RssFeedContents.tpl │ │ ├── RssWidgetContents.tpl │ │ ├── SideBarLinks.tpl │ │ └── resources │ │ │ └── List.js │ ├── SalesOrder │ │ └── resources │ │ │ ├── Detail.js │ │ │ └── Edit.js │ ├── Services │ │ └── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ └── RelatedList.js │ ├── Settings │ │ ├── CronTasks │ │ │ ├── EditAjax.tpl │ │ │ └── resources │ │ │ │ └── List.js │ │ ├── Currency │ │ │ ├── EditAjax.tpl │ │ │ ├── ListViewContents.tpl │ │ │ ├── TransformEdit.tpl │ │ │ └── resources │ │ │ │ └── Currency.js │ │ ├── CustomerPortal │ │ │ ├── Index.tpl │ │ │ └── resources │ │ │ │ └── CustomerPortal.js │ │ ├── EmailTemplate │ │ │ └── ListContents.tpl │ │ ├── Groups │ │ │ ├── DeleteTransferForm.tpl │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ └── resources │ │ │ │ └── Edit.js │ │ ├── LayoutEditor │ │ │ ├── FieldUi.tpl │ │ │ ├── Index.tpl │ │ │ ├── RelatedList.tpl │ │ │ └── resources │ │ │ │ └── LayoutEditor.js │ │ ├── Leads │ │ │ ├── LeadMappingEdit.tpl │ │ │ ├── MappingDetail.tpl │ │ │ └── resources │ │ │ │ └── LeadMapping.js │ │ ├── LoginHistory │ │ │ ├── ListViewHeader.tpl │ │ │ └── resources │ │ │ │ └── List.js │ │ ├── MailConverter │ │ │ ├── EditHeader.tpl │ │ │ ├── EditView.tpl │ │ │ ├── Index.tpl │ │ │ ├── ListViewActions.tpl │ │ │ ├── ListViewContents.tpl │ │ │ ├── Rule.tpl │ │ │ ├── RuleEditView.tpl │ │ │ ├── RulesList.tpl │ │ │ ├── Step1.tpl │ │ │ ├── Step2.tpl │ │ │ ├── Step3.tpl │ │ │ └── resources │ │ │ │ ├── Edit.js │ │ │ │ ├── List.js │ │ │ │ └── MailConverter.js │ │ ├── MenuEditor │ │ │ ├── Index.tpl │ │ │ └── resources │ │ │ │ └── MenuEditor.js │ │ ├── ModuleManager │ │ │ ├── ImportUserModuleStep1.tpl │ │ │ ├── ImportUserModuleStep2.tpl │ │ │ ├── IndexContents.tpl │ │ │ ├── ListContents.tpl │ │ │ ├── UpdateUserModuleStep3.tpl │ │ │ └── resources │ │ │ │ └── ModuleManager.js │ │ ├── PickListDependency │ │ │ ├── DependencyGraph.tpl │ │ │ ├── EditView.tpl │ │ │ ├── ListViewActions.tpl │ │ │ └── resources │ │ │ │ └── PickListDependency.js │ │ ├── Picklist │ │ │ ├── AssignValueToRole.tpl │ │ │ ├── CreateView.tpl │ │ │ ├── DeleteView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── Index.tpl │ │ │ ├── ModulePickListDetail.tpl │ │ │ ├── PickListValueByBlock.tpl │ │ │ ├── PickListValueByRole.tpl │ │ │ ├── PickListValueDetail.tpl │ │ │ └── resources │ │ │ │ └── Picklist.js │ │ ├── Profiles │ │ │ ├── DeleteTransferForm.tpl │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── EditViewContents.tpl │ │ │ └── resources │ │ │ │ └── Profiles.js │ │ ├── Roles │ │ │ ├── DeleteTransferForm.tpl │ │ │ ├── EditView.tpl │ │ │ ├── Index.tpl │ │ │ ├── Popup.tpl │ │ │ ├── RoleTree.tpl │ │ │ └── resources │ │ │ │ └── Roles.js │ │ ├── SMSNotifier │ │ │ ├── EditView.tpl │ │ │ ├── ProviderEditFields.tpl │ │ │ ├── TextAnyWhereEditField.tpl │ │ │ └── resources │ │ │ │ └── List.js │ │ ├── SharingAccess │ │ │ ├── EditRule.tpl │ │ │ ├── Index.tpl │ │ │ ├── ListRules.tpl │ │ │ └── resources │ │ │ │ └── SharingAccess.js │ │ ├── Vtiger │ │ │ ├── Announcement.tpl │ │ │ ├── CompanyDetails.tpl │ │ │ ├── CompanyDetailsEdit.tpl │ │ │ ├── ConfigEditorDetail.tpl │ │ │ ├── ConfigEditorEdit.tpl │ │ │ ├── CreatePdfSTexttemplate.tpl │ │ │ ├── CustomRecordNumbering.tpl │ │ │ ├── EditTax.tpl │ │ │ ├── Index.tpl │ │ │ ├── ListPdfTextTemplates.tpl │ │ │ ├── ListView.tpl │ │ │ ├── ListViewContents.tpl │ │ │ ├── ListViewHeader.tpl │ │ │ ├── ModuleCustomNumberingInfo.tpl │ │ │ ├── OutgoingServerDetail.tpl │ │ │ ├── OutgoingServerEdit.tpl │ │ │ ├── ReAlignSettingsShortCut.tpl │ │ │ ├── SettingsMenuEnd.tpl │ │ │ ├── SettingsMenuStart.tpl │ │ │ ├── SettingsShortCut.tpl │ │ │ ├── Sidebar.tpl │ │ │ ├── SummaryListView.tpl │ │ │ ├── TaxIndex.tpl │ │ │ ├── TermsAndConditions.tpl │ │ │ ├── UI5EmbedView.tpl │ │ │ └── resources │ │ │ │ ├── Announcement.js │ │ │ │ ├── CompanyDetails.js │ │ │ │ ├── ConfigEditor.js │ │ │ │ ├── CreatePdfSTexttemplate.js │ │ │ │ ├── CustomRecordNumbering.js │ │ │ │ ├── Detail.js │ │ │ │ ├── Edit.js │ │ │ │ ├── Index.js │ │ │ │ ├── List.js │ │ │ │ ├── ListPdfTextTemplates.js │ │ │ │ ├── OutgoingServer.js │ │ │ │ ├── Tax.js │ │ │ │ └── TermsAndConditions.js │ │ ├── Webforms │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── FieldsDetailView.tpl │ │ │ ├── FieldsEditView.tpl │ │ │ ├── ShowForm.tpl │ │ │ └── resources │ │ │ │ ├── Detail.js │ │ │ │ ├── Edit.js │ │ │ │ ├── Field.js │ │ │ │ └── List.js │ │ └── Workflows │ │ │ ├── AdvanceFilterCondition.tpl │ │ │ ├── CreateEntity.tpl │ │ │ ├── EditHeader.tpl │ │ │ ├── EditTask.tpl │ │ │ ├── FieldExpressions.tpl │ │ │ ├── LineItemsGroupTemplate.tpl │ │ │ ├── LineItemsIndividualTemplate.tpl │ │ │ ├── ListViewHeader.tpl │ │ │ ├── Step1.tpl │ │ │ ├── Step2.tpl │ │ │ ├── Step3.tpl │ │ │ ├── Tasks │ │ │ ├── VTCreateEntityTask.tpl │ │ │ ├── VTCreateEventTask.tpl │ │ │ ├── VTCreateTodoTask.tpl │ │ │ ├── VTEmailTask.tpl │ │ │ ├── VTEntityMethodTask.tpl │ │ │ ├── VTSMSTask.tpl │ │ │ └── VTUpdateFieldsTask.tpl │ │ │ ├── TasksList.tpl │ │ │ └── resources │ │ │ ├── AdvanceFilter.js │ │ │ ├── Edit.js │ │ │ ├── Edit1.js │ │ │ ├── Edit2.js │ │ │ ├── Edit3.js │ │ │ ├── List.js │ │ │ └── libraries │ │ │ └── jquery.datepick.package-4.1.0 │ │ │ ├── calendar-blue.gif │ │ │ ├── calendar-green.gif │ │ │ ├── calendar.gif │ │ │ ├── datepickBasic.html │ │ │ ├── flora.datepick.css │ │ │ ├── humanity.datepick.css │ │ │ ├── jquery.datepick-af.js │ │ │ ├── jquery.datepick-am.js │ │ │ ├── jquery.datepick-ar-DZ.js │ │ │ ├── jquery.datepick-ar-EG.js │ │ │ ├── jquery.datepick-ar.js │ │ │ ├── jquery.datepick-az.js │ │ │ ├── jquery.datepick-bg.js │ │ │ ├── jquery.datepick-bs.js │ │ │ ├── jquery.datepick-ca.js │ │ │ ├── jquery.datepick-cs.js │ │ │ ├── jquery.datepick-da.js │ │ │ ├── jquery.datepick-de-CH.js │ │ │ ├── jquery.datepick-de.js │ │ │ ├── jquery.datepick-el.js │ │ │ ├── jquery.datepick-en-AU.js │ │ │ ├── jquery.datepick-en-GB.js │ │ │ ├── jquery.datepick-en-NZ.js │ │ │ ├── jquery.datepick-eo.js │ │ │ ├── jquery.datepick-es-AR.js │ │ │ ├── jquery.datepick-es-PE.js │ │ │ ├── jquery.datepick-es.js │ │ │ ├── jquery.datepick-et.js │ │ │ ├── jquery.datepick-eu.js │ │ │ ├── jquery.datepick-fa.js │ │ │ ├── jquery.datepick-fi.js │ │ │ ├── jquery.datepick-fo.js │ │ │ ├── jquery.datepick-fr-CH.js │ │ │ ├── jquery.datepick-fr.js │ │ │ ├── jquery.datepick-gl.js │ │ │ ├── jquery.datepick-gu.js │ │ │ ├── jquery.datepick-he.js │ │ │ ├── jquery.datepick-hi-IN.js │ │ │ ├── jquery.datepick-hi.js │ │ │ ├── jquery.datepick-hr.js │ │ │ ├── jquery.datepick-hu.js │ │ │ ├── jquery.datepick-hy.js │ │ │ ├── jquery.datepick-id.js │ │ │ ├── jquery.datepick-is.js │ │ │ ├── jquery.datepick-it.js │ │ │ ├── jquery.datepick-ja.js │ │ │ ├── jquery.datepick-ka.js │ │ │ ├── jquery.datepick-km.js │ │ │ ├── jquery.datepick-ko.js │ │ │ ├── jquery.datepick-lt.js │ │ │ ├── jquery.datepick-lv.js │ │ │ ├── jquery.datepick-me-ME.js │ │ │ ├── jquery.datepick-me.js │ │ │ ├── jquery.datepick-mk.js │ │ │ ├── jquery.datepick-ml.js │ │ │ ├── jquery.datepick-ms.js │ │ │ ├── jquery.datepick-mt.js │ │ │ ├── jquery.datepick-nl-BE.js │ │ │ ├── jquery.datepick-nl.js │ │ │ ├── jquery.datepick-no.js │ │ │ ├── jquery.datepick-pl.js │ │ │ ├── jquery.datepick-pt-BR.js │ │ │ ├── jquery.datepick-pt.js │ │ │ ├── jquery.datepick-rm.js │ │ │ ├── jquery.datepick-ro.js │ │ │ ├── jquery.datepick-ru.js │ │ │ ├── jquery.datepick-sk.js │ │ │ ├── jquery.datepick-sl.js │ │ │ ├── jquery.datepick-sq.js │ │ │ ├── jquery.datepick-sr-SR.js │ │ │ ├── jquery.datepick-sr.js │ │ │ ├── jquery.datepick-sv.js │ │ │ ├── jquery.datepick-ta.js │ │ │ ├── jquery.datepick-th.js │ │ │ ├── jquery.datepick-tr.js │ │ │ ├── jquery.datepick-uk.js │ │ │ ├── jquery.datepick-ur.js │ │ │ ├── jquery.datepick-vi.js │ │ │ ├── jquery.datepick-zh-CN.js │ │ │ ├── jquery.datepick-zh-HK.js │ │ │ ├── jquery.datepick-zh-TW.js │ │ │ ├── jquery.datepick.css │ │ │ ├── jquery.datepick.ext.js │ │ │ ├── jquery.datepick.ext.min.js │ │ │ ├── jquery.datepick.js │ │ │ ├── jquery.datepick.lang.js │ │ │ ├── jquery.datepick.lang.min.js │ │ │ ├── jquery.datepick.min.js │ │ │ ├── jquery.datepick.validation.js │ │ │ ├── jquery.datepick.validation.min.js │ │ │ ├── redmond.datepick.css │ │ │ ├── smoothness.datepick.css │ │ │ ├── ui-black-tie.datepick.css │ │ │ ├── ui-blitzer.datepick.css │ │ │ ├── ui-cupertino.datepick.css │ │ │ ├── ui-dark-hive.datepick.css │ │ │ ├── ui-dot-luv.datepick.css │ │ │ ├── ui-eggplant.datepick.css │ │ │ ├── ui-excite-bike.datepick.css │ │ │ ├── ui-flick.datepick.css │ │ │ ├── ui-hot-sneaks.datepick.css │ │ │ ├── ui-humanity.datepick.css │ │ │ ├── ui-le-frog.datepick.css │ │ │ ├── ui-mint-choc.datepick.css │ │ │ ├── ui-overcast.datepick.css │ │ │ ├── ui-pepper-grinder.datepick.css │ │ │ ├── ui-redmond.datepick.css │ │ │ ├── ui-smoothness.datepick.css │ │ │ ├── ui-south-street.datepick.css │ │ │ ├── ui-start.datepick.css │ │ │ ├── ui-sunny.datepick.css │ │ │ ├── ui-swanky-purse.datepick.css │ │ │ ├── ui-trontastic.datepick.css │ │ │ ├── ui-ui-darkness.datepick.css │ │ │ ├── ui-ui-lightness.datepick.css │ │ │ ├── ui-vader.datepick.css │ │ │ └── ui.datepick.css │ ├── Users │ │ ├── ChangePassword.tpl │ │ ├── DeleteUser.tpl │ │ ├── DetailViewFullContents.tpl │ │ ├── EditView.tpl │ │ ├── FPLogin.tpl │ │ ├── ForgotPassword.tpl │ │ ├── ListViewContents.tpl │ │ ├── ListViewHeader.tpl │ │ ├── ListViewPreProcess.tpl │ │ ├── Login.Default.tpl │ │ ├── Login.tpl │ │ ├── OperationNotPermitted.tpl │ │ ├── PopupContents.tpl │ │ ├── PreferenceDetailViewHeader.tpl │ │ ├── PreferenceDetailViewPreProcess.tpl │ │ ├── SystemSetup.tpl │ │ ├── TransferOwner.tpl │ │ ├── UserEditViewPreProcess.tpl │ │ ├── UserSetup.tpl │ │ ├── UserViewHeader.tpl │ │ ├── UserViewPreProcess.tpl │ │ ├── resources │ │ │ ├── Detail.js │ │ │ ├── Edit.js │ │ │ ├── List.js │ │ │ ├── PreferenceDetail.js │ │ │ └── PreferenceEdit.js │ │ └── uitypes │ │ │ └── Picklist.tpl │ ├── Vendors │ │ └── resources │ │ │ └── Detail.js │ └── Vtiger │ │ ├── AddCommentForm.tpl │ │ ├── AdvanceFilter.tpl │ │ ├── AdvanceFilterCondition.tpl │ │ ├── AdvanceSearch.tpl │ │ ├── BasicHeader.tpl │ │ ├── Comment.tpl │ │ ├── CommentThreadList.tpl │ │ ├── CommentsList.tpl │ │ ├── CommentsListIteration.tpl │ │ ├── CommonActions.tpl │ │ ├── ComposeEmailForm.tpl │ │ ├── ContactsSummaryWidgetContents.tpl │ │ ├── DetailView.tpl │ │ ├── DetailViewBlockView.tpl │ │ ├── DetailViewFullContents.tpl │ │ ├── DetailViewHeader.tpl │ │ ├── DetailViewHeaderTitle.tpl │ │ ├── DetailViewPostProcess.tpl │ │ ├── DetailViewPreProcess.tpl │ │ ├── DetailViewSidebar.tpl │ │ ├── DetailViewSummaryContents.tpl │ │ ├── DocumentsSummaryWidgetContents.tpl │ │ ├── EditView.tpl │ │ ├── EditViewActions.tpl │ │ ├── EditViewBlocks.tpl │ │ ├── EmailRelatedList.tpl │ │ ├── Export.tpl │ │ ├── FindDuplicateContents.tpl │ │ ├── FindDuplicateHeader.tpl │ │ ├── FindDuplicatePreProcess.tpl │ │ ├── Footer.tpl │ │ ├── Header.tpl │ │ ├── HelpDeskSummaryWidgetContents.tpl │ │ ├── Index.tpl │ │ ├── IndexMenuStart.tpl │ │ ├── IndexPostProcess.tpl │ │ ├── IndexViewPreProcess.tpl │ │ ├── JSResources.tpl │ │ ├── LeftPanelShowHide.tpl │ │ ├── LineItemTemplate.tpl │ │ ├── ListViewActions.tpl │ │ ├── ListViewContents.tpl │ │ ├── ListViewHeader.tpl │ │ ├── ListViewPostProcess.tpl │ │ ├── ListViewPreProcess.tpl │ │ ├── ListViewSidebar.tpl │ │ ├── MassEditForm.tpl │ │ ├── MenuBar.tpl │ │ ├── MergeRecords.tpl │ │ ├── ModalFooter.tpl │ │ ├── ModuleSummaryView.tpl │ │ ├── NoComments.tpl │ │ ├── OperationNotPermitted.tpl │ │ ├── Popup.tpl │ │ ├── PopupContents.tpl │ │ ├── PopupFooter.tpl │ │ ├── PopupSearch.tpl │ │ ├── ProductsSummaryWidgetContents.tpl │ │ ├── ProjectMilestoneSummaryWidgetContents.tpl │ │ ├── ProjectTaskSummaryWidgetContents.tpl │ │ ├── QuickCreate.tpl │ │ ├── RecentActivities.tpl │ │ ├── RecentComments.tpl │ │ ├── RecordNamesList.tpl │ │ ├── RelatedActivities.tpl │ │ ├── RelatedList.tpl │ │ ├── SelectEmailFields.tpl │ │ ├── SendSMSForm.tpl │ │ ├── ShowAllComments.tpl │ │ ├── ShowTagCloud.tpl │ │ ├── SideBar.tpl │ │ ├── SideBarLinks.tpl │ │ ├── SideBarWidgets.tpl │ │ ├── SummaryViewContents.tpl │ │ ├── SummaryViewWidgets.tpl │ │ ├── SummaryWidgets.tpl │ │ ├── TagCloudResults.tpl │ │ ├── ToggleButton.tpl │ │ ├── TooltipContents.tpl │ │ ├── TransferRecordOwnership.tpl │ │ ├── UI5EmbedView.tpl │ │ ├── UnifiedSearchResults.tpl │ │ ├── browsercompatibility │ │ ├── Browser_compatibility.html │ │ ├── Browsers.png │ │ ├── crm-logo.png │ │ ├── hourGlass.png │ │ └── vtiger_logo.png │ │ ├── dashboards │ │ ├── AddNotePad.tpl │ │ ├── CalendarActivities.tpl │ │ ├── CalendarActivitiesContents.tpl │ │ ├── DashBoardContents.tpl │ │ ├── DashBoardHeader.tpl │ │ ├── DashBoardPostProcess.tpl │ │ ├── DashBoardPreProcess.tpl │ │ ├── DashBoardWidgetContents.tpl │ │ ├── DashboardHeaderIcons.tpl │ │ ├── History.tpl │ │ ├── HistoryContents.tpl │ │ ├── KeyMetrics.tpl │ │ ├── KeyMetricsContents.tpl │ │ ├── MiniList.tpl │ │ ├── MiniListContents.tpl │ │ ├── MiniListWizard.tpl │ │ ├── Notebook.tpl │ │ ├── NotebookContents.tpl │ │ ├── TagCloud.tpl │ │ ├── TagCloudContents.tpl │ │ └── WidgetHeader.tpl │ │ ├── resources │ │ ├── AdvanceFilter.js │ │ ├── AdvanceSearch.js │ │ ├── BasicSearch.js │ │ ├── CkEditor.js │ │ ├── DashBoard.js │ │ ├── Detail.js │ │ ├── Edit.js │ │ ├── EmailsRelatedPopup.js │ │ ├── FindDuplicates.js │ │ ├── Header.js │ │ ├── ImageHandler.js │ │ ├── List.js │ │ ├── Popup.js │ │ ├── RelatedList.js │ │ ├── SearchAdvanceFilter.js │ │ ├── Vtiger.js │ │ └── dashboards │ │ │ └── Widget.js │ │ ├── showDuplicateSearch.tpl │ │ └── uitypes │ │ ├── Autocompletedsingleuse.tpl │ │ ├── Autocompletedtext.tpl │ │ ├── Boolean.tpl │ │ ├── BooleanFieldSearchView.tpl │ │ ├── Currency.tpl │ │ ├── CurrencyList.tpl │ │ ├── Date.tpl │ │ ├── DateFieldSearchView.tpl │ │ ├── DateTime.tpl │ │ ├── DocumentsFileUpload.tpl │ │ ├── DocumentsFolder.tpl │ │ ├── Email.tpl │ │ ├── FieldSearchView.tpl │ │ ├── FileLocationType.tpl │ │ ├── Image.tpl │ │ ├── ImageDetailView.tpl │ │ ├── MultiOwner.tpl │ │ ├── MultiPicklist.tpl │ │ ├── MultiSelectFieldSearchView.tpl │ │ ├── Number.tpl │ │ ├── Owner.tpl │ │ ├── OwnerFieldSearchView.tpl │ │ ├── Password.tpl │ │ ├── Percentage.tpl │ │ ├── Phone.tpl │ │ ├── PhoneDetailView.tpl │ │ ├── PickListFieldSearchView.tpl │ │ ├── Picklist.tpl │ │ ├── ProductTax.tpl │ │ ├── Recurrence.tpl │ │ ├── RecurrenceDetailView.tpl │ │ ├── Reference.tpl │ │ ├── Reminder.tpl │ │ ├── ReminderDetailView.tpl │ │ ├── String.tpl │ │ ├── StringDetailView.tpl │ │ ├── Text.tpl │ │ ├── Theme.tpl │ │ ├── Time.tpl │ │ ├── TimeFieldSearchView.tpl │ │ ├── Url.tpl │ │ ├── UserPicklist.tpl │ │ └── UserRole.tpl │ └── skins │ ├── almond │ ├── images │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── alphagrey │ ├── images │ │ ├── QuickLinkRibbon.png │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── pattern.png │ │ ├── pattren.png │ │ ├── ribbon.png │ │ ├── search.png │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── tools.png │ │ ├── unSelectedQuickLink.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── bluelagoon │ ├── images │ │ ├── QuickLinkRibbon.png │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAdd.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── btnCalendar.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── pattern.png │ │ ├── pattren.png │ │ ├── ribbon.png │ │ ├── search.png │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── tools.png │ │ ├── unSelectedQuickLink.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── firebrick │ ├── images │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── images │ ├── Accounts.png │ ├── Arrow-down.png │ ├── Arrow-up.png │ ├── Assets.png │ ├── Authorize.png │ ├── BasicPackage.png │ ├── CWC.png │ ├── Calendar.png │ ├── Call_white.png │ ├── Campaigns.png │ ├── Comments.png │ ├── ConfigEditor.png │ ├── Contacts.png │ ├── CronTasks.png │ ├── CustomerPortal.png │ ├── DSGVO.png │ ├── Dashboard.png │ ├── DefaultModule.png │ ├── DefaultUserIcon.png │ ├── Delete.png │ ├── Disable.png │ ├── Documents.png │ ├── EditWorkflows.png │ ├── EmailTemplates.png │ ├── Emails.png │ ├── Enable.png │ ├── Events.png │ ├── Faq.png │ ├── FieldFormulas.png │ ├── Google.png │ ├── HelpDesk.png │ ├── Home.png │ ├── Import.png │ ├── Integration.png │ ├── Inventory.png │ ├── Invoice.png │ ├── LanguageEditor.png │ ├── LayoutEditor.gif │ ├── Leads.png │ ├── ListViewColors.png │ ├── ListViewJump.png │ ├── MailConverter.png │ ├── MailConverterComment.png │ ├── MailManager.png │ ├── Mailchimp.png │ ├── Marketing.png │ ├── Meeting_white.png │ ├── Mobile.png │ ├── ModComments.png │ ├── ModTracker.png │ ├── Ondemand.png │ ├── PBXManager.png │ ├── PDFMaker.png │ ├── Payments.png │ ├── Pdfsettings.png │ ├── Portal.png │ ├── Potentials.png │ ├── PriceBooks.png │ ├── Products.png │ ├── Project.png │ ├── ProjectManagement.png │ ├── ProjectMilestone.png │ ├── ProjectMilestones.png │ ├── ProjectTask.png │ ├── PurchaseOrder.png │ ├── Quotes.png │ ├── RecycleBin.png │ ├── Reports.png │ ├── Rss.png │ ├── SMSNotifier.png │ ├── SalesAutomation.png │ ├── SalesOrder.png │ ├── SaveAs.png │ ├── Search.png │ ├── ServiceContracts.png │ ├── Services.png │ ├── Support.png │ ├── Tasks.png │ ├── Tickets.png │ ├── Tooltip.png │ ├── Users.png │ ├── Vendors.png │ ├── VtigerBackup.png │ ├── Webforms.png │ ├── android.png │ ├── android_text.png │ ├── attachments.gif │ ├── berliCleverReach.png │ ├── berliSoftphones.png │ ├── berliWidgets.png │ ├── berlimap.png │ ├── black.png │ ├── blogger.png │ ├── btnAdd.png │ ├── btnAdd_white.png │ ├── btnAnnounce.png │ ├── btnAnnounceOff.png │ ├── btnCalendar.png │ ├── btnChat.png │ ├── btnColorAdd.png │ ├── btnTracker.png │ ├── check_radio_sprite.png │ ├── circle_question_mark.png │ ├── clear.png │ ├── clock3.png │ ├── close.gif │ ├── crmtogo.png │ ├── csv.png │ ├── denied.gif │ ├── disabled.gif │ ├── downArrow.png │ ├── downArrowBlue.png │ ├── downArrowSmall.png │ ├── downArrowWhite.png │ ├── drag.png │ ├── emailattachment.gif │ ├── enabled.gif │ ├── exchange_conn.png │ ├── exchange_conn_text.png │ ├── facebook.png │ ├── favicon.ico │ ├── filter.png │ ├── filterDelete.png │ ├── gdpr.png │ ├── germany_flag.png │ ├── gray.png │ ├── green.png │ ├── hbar.PNG │ ├── help.png │ ├── help40.png │ ├── help_icon.gif │ ├── info.png │ ├── install_loading.gif │ ├── ipad.png │ ├── ipad_text.png │ ├── iphone.png │ ├── iphone_text.png │ ├── line.PNG │ ├── linkedin.png │ ├── load.gif │ ├── loadback.png │ ├── loading.gif │ ├── loading_old.gif │ ├── logo.png │ ├── logo_mail.jpg │ ├── mailbox-icon.png │ ├── migration_loading.gif │ ├── migration_screen.png │ ├── no.gif │ ├── no.png │ ├── orange.png │ ├── outlook.png │ ├── outlook_text.png │ ├── pattern.png │ ├── paypal.png │ ├── pdf.png │ ├── phone.png │ ├── pie.PNG │ ├── pin.png │ ├── pivotpreview.png │ ├── print.png │ ├── prvPrfSelectedTick.gif │ ├── ribbon.png │ ├── rightArrowSmall.png │ ├── rightArrowWhite.png │ ├── rss_add.png │ ├── setting.png │ ├── star-half.png │ ├── star-off.png │ ├── star-on.png │ ├── stars.png │ ├── summary_Contact.png │ ├── summary_Leads.png │ ├── summary_Oppurtunities.png │ ├── summary_Projects.png │ ├── summary_Tickets.png │ ├── summary_organizations.png │ ├── theme_brush.png │ ├── tools.png │ ├── twitter.png │ ├── unavailable.png │ ├── unpin.png │ ├── upArrowSmall.png │ ├── usa_flag.png │ ├── user.png │ ├── usersetupbg.png │ ├── vbar.PNG │ ├── vt1.png │ ├── vtGlyph.png │ ├── vtbusy.gif │ ├── wizard_screen.png │ ├── wordpress-notused.png │ ├── xlsx.png │ ├── yellow.png │ └── youtube.png │ ├── nature │ ├── images │ │ ├── QuickLinkRibbon.png │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── pattren.png │ │ ├── ribbon.png │ │ ├── search.png │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── tools.png │ │ ├── unSelectedQuickLink.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── orchid │ ├── images │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── softed │ ├── images │ │ ├── QuickLinkRibbon.png │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── pattern.png │ │ ├── ribbon.png │ │ ├── search.png │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── tools.png │ │ ├── unSelectedQuickLink.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── style.less │ ├── twilight │ ├── images │ │ ├── Sync.gif │ │ ├── arrowDown.png │ │ ├── arrowRight.png │ │ ├── black.png │ │ ├── btnAnnounce.png │ │ ├── btnAnnounceOff.png │ │ ├── green.png │ │ ├── home.png │ │ ├── info.png │ │ ├── loadback.png │ │ ├── loading.gif │ │ ├── loadingSmall.gif │ │ ├── loading_old.gif │ │ ├── setting.png │ │ ├── tabs.png │ │ ├── user.png │ │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less │ ├── vtiger │ └── style.less │ └── woodspice │ ├── images │ ├── QuickLinkRibbon.png │ ├── Sync.gif │ ├── arrowDown.png │ ├── arrowRight.png │ ├── black.png │ ├── btnAnnounce.png │ ├── btnAnnounceOff.png │ ├── green.png │ ├── home.png │ ├── info.png │ ├── loadback.png │ ├── loading.gif │ ├── loadingSmall.gif │ ├── loading_old.gif │ ├── ribbon.png │ ├── search.png │ ├── setting.png │ ├── tabs.png │ ├── tools.png │ ├── unSelectedQuickLink.png │ ├── user.png │ └── yellow.png │ ├── style.css │ ├── style.less │ └── variables.less ├── libraries ├── HTTP_Session2 │ ├── HTTP │ │ ├── Session2.php │ │ └── Session2 │ │ │ ├── Container.php │ │ │ ├── Container │ │ │ ├── DB.php │ │ │ ├── Interface.php │ │ │ ├── MDB2.php │ │ │ └── Memcache.php │ │ │ └── Exception.php │ ├── docs │ │ ├── HTTP_Session2_Example.php │ │ └── sessiondata.sql │ └── tests │ │ ├── AllTests.php │ │ ├── functions.php │ │ ├── test-session-doctrine.phpt │ │ ├── test-session-mdb2.phpt │ │ ├── test-session.phpt │ │ └── test-session2.phpt ├── Oauth │ └── Oauth.php ├── PHPExcel │ ├── PHPExcel.php │ └── PHPExcel │ │ ├── Autoloader.php │ │ ├── CachedObjectStorage │ │ ├── APC.php │ │ ├── CacheBase.php │ │ ├── DiscISAM.php │ │ ├── ICache.php │ │ ├── Igbinary.php │ │ ├── Memcache.php │ │ ├── Memory.php │ │ ├── MemoryGZip.php │ │ ├── MemorySerialized.php │ │ ├── PHPTemp.php │ │ ├── SQLite.php │ │ ├── SQLite3.php │ │ └── Wincache.php │ │ ├── CachedObjectStorageFactory.php │ │ ├── Calculation.php │ │ ├── Calculation │ │ ├── Database.php │ │ ├── DateTime.php │ │ ├── Engineering.php │ │ ├── Exception.php │ │ ├── ExceptionHandler.php │ │ ├── Financial.php │ │ ├── FormulaParser.php │ │ ├── FormulaToken.php │ │ ├── Function.php │ │ ├── Functions.php │ │ ├── Logical.php │ │ ├── LookupRef.php │ │ ├── MathTrig.php │ │ ├── Statistical.php │ │ ├── TextData.php │ │ └── functionlist.txt │ │ ├── Cell.php │ │ ├── Cell │ │ ├── AdvancedValueBinder.php │ │ ├── DataType.php │ │ ├── DataValidation.php │ │ ├── DefaultValueBinder.php │ │ ├── Hyperlink.php │ │ └── IValueBinder.php │ │ ├── Chart.php │ │ ├── Chart │ │ ├── DataSeries.php │ │ ├── DataSeriesValues.php │ │ ├── Layout.php │ │ ├── Legend.php │ │ ├── PlotArea.php │ │ ├── Renderer │ │ │ ├── PHP Charting Libraries.txt │ │ │ └── jpgraph.php │ │ └── Title.php │ │ ├── Comment.php │ │ ├── DocumentProperties.php │ │ ├── DocumentSecurity.php │ │ ├── HashTable.php │ │ ├── IComparable.php │ │ ├── IOFactory.php │ │ ├── NamedRange.php │ │ ├── Reader │ │ ├── CSV.php │ │ ├── DefaultReadFilter.php │ │ ├── Excel2003XML.php │ │ ├── Excel2007.php │ │ ├── Excel2007 │ │ │ ├── Chart.php │ │ │ └── Theme.php │ │ ├── Excel5.php │ │ ├── Excel5 │ │ │ └── Escher.php │ │ ├── Gnumeric.php │ │ ├── IReadFilter.php │ │ ├── IReader.php │ │ ├── OOCalc.php │ │ └── SYLK.php │ │ ├── ReferenceHelper.php │ │ ├── RichText.php │ │ ├── RichText │ │ ├── ITextElement.php │ │ ├── Run.php │ │ └── TextElement.php │ │ ├── Settings.php │ │ ├── Shared │ │ ├── CodePage.php │ │ ├── Date.php │ │ ├── Drawing.php │ │ ├── Escher.php │ │ ├── Escher │ │ │ ├── DgContainer.php │ │ │ ├── DgContainer │ │ │ │ ├── SpgrContainer.php │ │ │ │ └── SpgrContainer │ │ │ │ │ └── SpContainer.php │ │ │ ├── DggContainer.php │ │ │ └── DggContainer │ │ │ │ ├── BstoreContainer.php │ │ │ │ └── BstoreContainer │ │ │ │ ├── BSE.php │ │ │ │ └── BSE │ │ │ │ └── Blip.php │ │ ├── Excel5.php │ │ ├── File.php │ │ ├── Font.php │ │ ├── JAMA │ │ │ ├── CHANGELOG.TXT │ │ │ ├── CholeskyDecomposition.php │ │ │ ├── EigenvalueDecomposition.php │ │ │ ├── LUDecomposition.php │ │ │ ├── Matrix.php │ │ │ ├── QRDecomposition.php │ │ │ ├── SingularValueDecomposition.php │ │ │ └── utils │ │ │ │ ├── Error.php │ │ │ │ └── Maths.php │ │ ├── OLE.php │ │ ├── OLE │ │ │ ├── ChainedBlockStream.php │ │ │ ├── PPS.php │ │ │ └── PPS │ │ │ │ ├── File.php │ │ │ │ └── Root.php │ │ ├── OLERead.php │ │ ├── PCLZip │ │ │ ├── gnu-lgpl.txt │ │ │ ├── pclzip.lib.php │ │ │ └── readme.txt │ │ ├── PasswordHasher.php │ │ ├── String.php │ │ ├── XMLWriter.php │ │ ├── ZipArchive.php │ │ ├── ZipStreamWrapper.php │ │ └── trend │ │ │ ├── bestFitClass.php │ │ │ ├── exponentialBestFitClass.php │ │ │ ├── linearBestFitClass.php │ │ │ ├── logarithmicBestFitClass.php │ │ │ ├── polynomialBestFitClass.php │ │ │ ├── powerBestFitClass.php │ │ │ └── trendClass.php │ │ ├── Style.php │ │ ├── Style │ │ ├── Alignment.php │ │ ├── Border.php │ │ ├── Borders.php │ │ ├── Color.php │ │ ├── Conditional.php │ │ ├── Fill.php │ │ ├── Font.php │ │ ├── NumberFormat.php │ │ └── Protection.php │ │ ├── Worksheet.php │ │ ├── Worksheet │ │ ├── BaseDrawing.php │ │ ├── CellIterator.php │ │ ├── ColumnDimension.php │ │ ├── Drawing.php │ │ ├── Drawing │ │ │ └── Shadow.php │ │ ├── HeaderFooter.php │ │ ├── HeaderFooterDrawing.php │ │ ├── MemoryDrawing.php │ │ ├── PageMargins.php │ │ ├── PageSetup.php │ │ ├── Protection.php │ │ ├── Row.php │ │ ├── RowDimension.php │ │ ├── RowIterator.php │ │ └── SheetView.php │ │ ├── WorksheetIterator.php │ │ ├── Writer │ │ ├── CSV.php │ │ ├── Excel2007.php │ │ ├── Excel2007 │ │ │ ├── Chart.php │ │ │ ├── Comments.php │ │ │ ├── ContentTypes.php │ │ │ ├── DocProps.php │ │ │ ├── Drawing.php │ │ │ ├── Rels.php │ │ │ ├── StringTable.php │ │ │ ├── Style.php │ │ │ ├── Theme.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── WriterPart.php │ │ ├── Excel5.php │ │ ├── Excel5 │ │ │ ├── BIFFwriter.php │ │ │ ├── Escher.php │ │ │ ├── Font.php │ │ │ ├── Parser.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── Xf.php │ │ ├── HTML.php │ │ ├── IWriter.php │ │ └── PDF.php │ │ └── locale │ │ ├── cs │ │ ├── config │ │ └── functions │ │ ├── da │ │ ├── config │ │ └── functions │ │ ├── de │ │ ├── config │ │ └── functions │ │ ├── en │ │ └── uk │ │ │ └── config │ │ ├── es │ │ ├── config │ │ └── functions │ │ ├── fi │ │ ├── config │ │ └── functions │ │ ├── fr │ │ ├── config │ │ └── functions │ │ ├── hu │ │ ├── config │ │ └── functions │ │ ├── it │ │ ├── config │ │ └── functions │ │ ├── nl │ │ ├── config │ │ └── functions │ │ ├── no │ │ ├── config │ │ └── functions │ │ ├── pl │ │ ├── config │ │ └── functions │ │ ├── pt │ │ ├── br │ │ │ ├── config │ │ │ └── functions │ │ ├── config │ │ └── functions │ │ ├── ru │ │ ├── config │ │ └── functions │ │ └── sv │ │ ├── config │ │ └── functions ├── PHPMarkdown │ ├── License.md │ ├── Michelf │ │ ├── Markdown.inc.php │ │ ├── Markdown.php │ │ ├── MarkdownExtra.inc.php │ │ ├── MarkdownExtra.php │ │ ├── MarkdownInterface.inc.php │ │ └── MarkdownInterface.php │ ├── Readme.md │ ├── Readme.php │ └── composer.json ├── Smarty │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ └── libs │ │ ├── Autoloader.php │ │ ├── Smarty.class.php │ │ ├── bootstrap.php │ │ ├── debug.tpl │ │ ├── plugins │ │ ├── block.textformat.php │ │ ├── function.counter.php │ │ ├── function.cycle.php │ │ ├── function.fetch.php │ │ ├── function.html_checkboxes.php │ │ ├── function.html_image.php │ │ ├── function.html_options.php │ │ ├── function.html_radios.php │ │ ├── function.html_select_date.php │ │ ├── function.html_select_time.php │ │ ├── function.html_table.php │ │ ├── function.mailto.php │ │ ├── function.math.php │ │ ├── modifier.capitalize.php │ │ ├── modifier.date_format.php │ │ ├── modifier.debug_print_var.php │ │ ├── modifier.escape.php │ │ ├── modifier.mb_wordwrap.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.replace.php │ │ ├── modifier.spacify.php │ │ ├── modifier.truncate.php │ │ ├── modifiercompiler.cat.php │ │ ├── modifiercompiler.count_characters.php │ │ ├── modifiercompiler.count_paragraphs.php │ │ ├── modifiercompiler.count_sentences.php │ │ ├── modifiercompiler.count_words.php │ │ ├── modifiercompiler.default.php │ │ ├── modifiercompiler.escape.php │ │ ├── modifiercompiler.from_charset.php │ │ ├── modifiercompiler.indent.php │ │ ├── modifiercompiler.lower.php │ │ ├── modifiercompiler.noprint.php │ │ ├── modifiercompiler.string_format.php │ │ ├── modifiercompiler.strip.php │ │ ├── modifiercompiler.strip_tags.php │ │ ├── modifiercompiler.to_charset.php │ │ ├── modifiercompiler.unescape.php │ │ ├── modifiercompiler.upper.php │ │ ├── modifiercompiler.wordwrap.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── shared.escape_special_chars.php │ │ ├── shared.literal_compiler_param.php │ │ ├── shared.make_timestamp.php │ │ ├── shared.mb_str_replace.php │ │ ├── shared.mb_unicode.php │ │ ├── shared.mb_wordwrap.php │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ ├── smarty_cacheresource.php │ │ ├── smarty_cacheresource_custom.php │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ ├── smarty_data.php │ │ ├── smarty_internal_block.php │ │ ├── smarty_internal_cacheresource_file.php │ │ ├── smarty_internal_compile_append.php │ │ ├── smarty_internal_compile_assign.php │ │ ├── smarty_internal_compile_block.php │ │ ├── smarty_internal_compile_block_child.php │ │ ├── smarty_internal_compile_block_parent.php │ │ ├── smarty_internal_compile_break.php │ │ ├── smarty_internal_compile_call.php │ │ ├── smarty_internal_compile_capture.php │ │ ├── smarty_internal_compile_child.php │ │ ├── smarty_internal_compile_config_load.php │ │ ├── smarty_internal_compile_continue.php │ │ ├── smarty_internal_compile_debug.php │ │ ├── smarty_internal_compile_eval.php │ │ ├── smarty_internal_compile_extends.php │ │ ├── smarty_internal_compile_for.php │ │ ├── smarty_internal_compile_foreach.php │ │ ├── smarty_internal_compile_function.php │ │ ├── smarty_internal_compile_if.php │ │ ├── smarty_internal_compile_include.php │ │ ├── smarty_internal_compile_include_php.php │ │ ├── smarty_internal_compile_insert.php │ │ ├── smarty_internal_compile_ldelim.php │ │ ├── smarty_internal_compile_make_nocache.php │ │ ├── smarty_internal_compile_nocache.php │ │ ├── smarty_internal_compile_parent.php │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ ├── smarty_internal_compile_private_foreachsection.php │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ ├── smarty_internal_compile_private_modifier.php │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ ├── smarty_internal_compile_private_object_function.php │ │ ├── smarty_internal_compile_private_php.php │ │ ├── smarty_internal_compile_private_print_expression.php │ │ ├── smarty_internal_compile_private_registered_block.php │ │ ├── smarty_internal_compile_private_registered_function.php │ │ ├── smarty_internal_compile_private_special_variable.php │ │ ├── smarty_internal_compile_rdelim.php │ │ ├── smarty_internal_compile_section.php │ │ ├── smarty_internal_compile_setfilter.php │ │ ├── smarty_internal_compile_shared_inheritance.php │ │ ├── smarty_internal_compile_while.php │ │ ├── smarty_internal_compilebase.php │ │ ├── smarty_internal_config_file_compiler.php │ │ ├── smarty_internal_configfilelexer.php │ │ ├── smarty_internal_configfileparser.php │ │ ├── smarty_internal_data.php │ │ ├── smarty_internal_debug.php │ │ ├── smarty_internal_errorhandler.php │ │ ├── smarty_internal_extension_clear.php │ │ ├── smarty_internal_extension_handler.php │ │ ├── smarty_internal_method_addautoloadfilters.php │ │ ├── smarty_internal_method_adddefaultmodifiers.php │ │ ├── smarty_internal_method_append.php │ │ ├── smarty_internal_method_appendbyref.php │ │ ├── smarty_internal_method_assignbyref.php │ │ ├── smarty_internal_method_assignglobal.php │ │ ├── smarty_internal_method_clearallassign.php │ │ ├── smarty_internal_method_clearallcache.php │ │ ├── smarty_internal_method_clearassign.php │ │ ├── smarty_internal_method_clearcache.php │ │ ├── smarty_internal_method_clearcompiledtemplate.php │ │ ├── smarty_internal_method_clearconfig.php │ │ ├── smarty_internal_method_compileallconfig.php │ │ ├── smarty_internal_method_compilealltemplates.php │ │ ├── smarty_internal_method_configload.php │ │ ├── smarty_internal_method_createdata.php │ │ ├── smarty_internal_method_getautoloadfilters.php │ │ ├── smarty_internal_method_getconfigvariable.php │ │ ├── smarty_internal_method_getconfigvars.php │ │ ├── smarty_internal_method_getdebugtemplate.php │ │ ├── smarty_internal_method_getdefaultmodifiers.php │ │ ├── smarty_internal_method_getglobal.php │ │ ├── smarty_internal_method_getregisteredobject.php │ │ ├── smarty_internal_method_getstreamvariable.php │ │ ├── smarty_internal_method_gettags.php │ │ ├── smarty_internal_method_gettemplatevars.php │ │ ├── smarty_internal_method_literals.php │ │ ├── smarty_internal_method_loadfilter.php │ │ ├── smarty_internal_method_loadplugin.php │ │ ├── smarty_internal_method_mustcompile.php │ │ ├── smarty_internal_method_registercacheresource.php │ │ ├── smarty_internal_method_registerclass.php │ │ ├── smarty_internal_method_registerdefaultconfighandler.php │ │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ │ ├── smarty_internal_method_registerfilter.php │ │ ├── smarty_internal_method_registerobject.php │ │ ├── smarty_internal_method_registerplugin.php │ │ ├── smarty_internal_method_registerresource.php │ │ ├── smarty_internal_method_setautoloadfilters.php │ │ ├── smarty_internal_method_setdebugtemplate.php │ │ ├── smarty_internal_method_setdefaultmodifiers.php │ │ ├── smarty_internal_method_unloadfilter.php │ │ ├── smarty_internal_method_unregistercacheresource.php │ │ ├── smarty_internal_method_unregisterfilter.php │ │ ├── smarty_internal_method_unregisterobject.php │ │ ├── smarty_internal_method_unregisterplugin.php │ │ ├── smarty_internal_method_unregisterresource.php │ │ ├── smarty_internal_nocache_insert.php │ │ ├── smarty_internal_parsetree.php │ │ ├── smarty_internal_parsetree_code.php │ │ ├── smarty_internal_parsetree_dq.php │ │ ├── smarty_internal_parsetree_dqcontent.php │ │ ├── smarty_internal_parsetree_tag.php │ │ ├── smarty_internal_parsetree_template.php │ │ ├── smarty_internal_parsetree_text.php │ │ ├── smarty_internal_resource_eval.php │ │ ├── smarty_internal_resource_extends.php │ │ ├── smarty_internal_resource_file.php │ │ ├── smarty_internal_resource_php.php │ │ ├── smarty_internal_resource_registered.php │ │ ├── smarty_internal_resource_stream.php │ │ ├── smarty_internal_resource_string.php │ │ ├── smarty_internal_runtime_cachemodify.php │ │ ├── smarty_internal_runtime_cacheresourcefile.php │ │ ├── smarty_internal_runtime_capture.php │ │ ├── smarty_internal_runtime_codeframe.php │ │ ├── smarty_internal_runtime_filterhandler.php │ │ ├── smarty_internal_runtime_foreach.php │ │ ├── smarty_internal_runtime_getincludepath.php │ │ ├── smarty_internal_runtime_inheritance.php │ │ ├── smarty_internal_runtime_make_nocache.php │ │ ├── smarty_internal_runtime_tplfunction.php │ │ ├── smarty_internal_runtime_updatecache.php │ │ ├── smarty_internal_runtime_updatescope.php │ │ ├── smarty_internal_runtime_writefile.php │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ ├── smarty_internal_template.php │ │ ├── smarty_internal_templatebase.php │ │ ├── smarty_internal_templatecompilerbase.php │ │ ├── smarty_internal_templatelexer.php │ │ ├── smarty_internal_templateparser.php │ │ ├── smarty_internal_testinstall.php │ │ ├── smarty_internal_undefined.php │ │ ├── smarty_resource.php │ │ ├── smarty_resource_custom.php │ │ ├── smarty_resource_recompiled.php │ │ ├── smarty_resource_uncompiled.php │ │ ├── smarty_security.php │ │ ├── smarty_template_cached.php │ │ ├── smarty_template_compiled.php │ │ ├── smarty_template_config.php │ │ ├── smarty_template_resource_base.php │ │ ├── smarty_template_source.php │ │ ├── smarty_undefined_variable.php │ │ ├── smarty_variable.php │ │ ├── smartycompilerexception.php │ │ └── smartyexception.php ├── adodb │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── SECURITY.md │ ├── adodb-active-record.inc.php │ ├── adodb-active-recordx.inc.php │ ├── adodb-csvlib.inc.php │ ├── adodb-datadict.inc.php │ ├── adodb-error.inc.php │ ├── adodb-errorhandler.inc.php │ ├── adodb-errorpear.inc.php │ ├── adodb-exceptions.inc.php │ ├── adodb-lib.inc.php │ ├── adodb-loadbalancer.inc.php │ ├── adodb-memcache.lib.inc.php │ ├── adodb-pager.inc.php │ ├── adodb-pear.inc.php │ ├── adodb-perf.inc.php │ ├── adodb-time.inc.php │ ├── adodb-xmlschema.inc.php │ ├── adodb-xmlschema03.inc.php │ ├── adodb.inc.php │ ├── composer.json │ ├── datadict │ │ ├── datadict-access.inc.php │ │ ├── datadict-db2.inc.php │ │ ├── datadict-firebird.inc.php │ │ ├── datadict-generic.inc.php │ │ ├── datadict-ibase.inc.php │ │ ├── datadict-informix.inc.php │ │ ├── datadict-mssql.inc.php │ │ ├── datadict-mssqlnative.inc.php │ │ ├── datadict-mysql.inc.php │ │ ├── datadict-oci8.inc.php │ │ ├── datadict-postgres.inc.php │ │ ├── datadict-sapdb.inc.php │ │ ├── datadict-sqlite.inc.php │ │ └── datadict-sybase.inc.php │ ├── docs │ │ ├── README.md │ │ ├── adodb.gif │ │ ├── adodb2.gif │ │ ├── changelog.md │ │ ├── changelog_v2.x.md │ │ ├── changelog_v3.x.md │ │ ├── changelog_v4+5.md │ │ └── changelog_v4.x.md │ ├── drivers │ │ ├── adodb-access.inc.php │ │ ├── adodb-ado.inc.php │ │ ├── adodb-ado5.inc.php │ │ ├── adodb-ado_access.inc.php │ │ ├── adodb-ado_mssql.inc.php │ │ ├── adodb-ads.inc.php │ │ ├── adodb-borland_ibase.inc.php │ │ ├── adodb-csv.inc.php │ │ ├── adodb-db2.inc.php │ │ ├── adodb-db2oci.inc.php │ │ ├── adodb-db2ora.inc.php │ │ ├── adodb-fbsql.inc.php │ │ ├── adodb-firebird.inc.php │ │ ├── adodb-ibase.inc.php │ │ ├── adodb-informix.inc.php │ │ ├── adodb-informix72.inc.php │ │ ├── adodb-ldap.inc.php │ │ ├── adodb-mssql.inc.php │ │ ├── adodb-mssql_n.inc.php │ │ ├── adodb-mssqlnative.inc.php │ │ ├── adodb-mssqlpo.inc.php │ │ ├── adodb-mysqli.inc.php │ │ ├── adodb-netezza.inc.php │ │ ├── adodb-oci8.inc.php │ │ ├── adodb-oci805.inc.php │ │ ├── adodb-oci8po.inc.php │ │ ├── adodb-oci8quercus.inc.php │ │ ├── adodb-odbc.inc.php │ │ ├── adodb-odbc_db2.inc.php │ │ ├── adodb-odbc_mssql.inc.php │ │ ├── adodb-odbc_mssql2012.inc.php │ │ ├── adodb-odbc_oracle.inc.php │ │ ├── adodb-odbtp.inc.php │ │ ├── adodb-odbtp_unicode.inc.php │ │ ├── adodb-oracle.inc.php │ │ ├── adodb-pdo.inc.php │ │ ├── adodb-pdo_dblib.inc.php │ │ ├── adodb-pdo_firebird.inc.php │ │ ├── adodb-pdo_mssql.inc.php │ │ ├── adodb-pdo_mysql.inc.php │ │ ├── adodb-pdo_oci.inc.php │ │ ├── adodb-pdo_pgsql.inc.php │ │ ├── adodb-pdo_sqlite.inc.php │ │ ├── adodb-pdo_sqlsrv.inc.php │ │ ├── adodb-postgres.inc.php │ │ ├── adodb-postgres64.inc.php │ │ ├── adodb-postgres7.inc.php │ │ ├── adodb-postgres8.inc.php │ │ ├── adodb-postgres9.inc.php │ │ ├── adodb-proxy.inc.php │ │ ├── adodb-sapdb.inc.php │ │ ├── adodb-sqlanywhere.inc.php │ │ ├── adodb-sqlite.inc.php │ │ ├── adodb-sqlite3.inc.php │ │ ├── adodb-sqlitepo.inc.php │ │ ├── adodb-sybase.inc.php │ │ ├── adodb-sybase_ase.inc.php │ │ ├── adodb-text.inc.php │ │ └── adodb-vfp.inc.php │ ├── lang │ │ ├── adodb-ar.inc.php │ │ ├── adodb-bg.inc.php │ │ ├── adodb-ca.inc.php │ │ ├── adodb-cn.inc.php │ │ ├── adodb-cz.inc.php │ │ ├── adodb-da.inc.php │ │ ├── adodb-de.inc.php │ │ ├── adodb-en.inc.php │ │ ├── adodb-eo.inc.php │ │ ├── adodb-es.inc.php │ │ ├── adodb-fa.inc.php │ │ ├── adodb-fr.inc.php │ │ ├── adodb-hu.inc.php │ │ ├── adodb-id.inc.php │ │ ├── adodb-it.inc.php │ │ ├── adodb-nl.inc.php │ │ ├── adodb-oc.inc.php │ │ ├── adodb-pl.inc.php │ │ ├── adodb-pt-br.inc.php │ │ ├── adodb-ro.inc.php │ │ ├── adodb-ru.inc.php │ │ ├── adodb-sv.inc.php │ │ ├── adodb-th.inc.php │ │ └── adodb-uk.inc.php │ ├── pear │ │ ├── Auth │ │ │ └── Container │ │ │ │ └── ADOdb.php │ │ ├── auth_adodb_example.php │ │ └── readme.Auth.txt │ ├── perf │ │ ├── perf-db2.inc.php │ │ ├── perf-informix.inc.php │ │ ├── perf-mssql.inc.php │ │ ├── perf-mssqlnative.inc.php │ │ ├── perf-mysql.inc.php │ │ ├── perf-oci8.inc.php │ │ ├── perf-postgres.inc.php │ │ └── perf-sqlite3.inc.php │ ├── phpdoc │ ├── phpdoc.dist.xml │ ├── pivottable.inc.php │ ├── rsfilter.inc.php │ ├── session │ │ ├── adodb-compress-bzip2.php │ │ ├── adodb-compress-gzip.php │ │ ├── adodb-cryptsession.php │ │ ├── adodb-cryptsession2.php │ │ ├── adodb-encrypt-mcrypt.php │ │ ├── adodb-encrypt-md5.php │ │ ├── adodb-encrypt-secret.php │ │ ├── adodb-encrypt-sha1.php │ │ ├── adodb-sess.txt │ │ ├── adodb-session-clob.php │ │ ├── adodb-session-clob2.php │ │ ├── adodb-session.php │ │ ├── adodb-session2.php │ │ ├── adodb-sessions.mysql.sql │ │ ├── adodb-sessions.oracle.clob.sql │ │ ├── adodb-sessions.oracle.sql │ │ ├── crypt.inc.php │ │ ├── session_schema.xml │ │ └── session_schema2.xml │ ├── toexport.inc.php │ ├── tohtml.inc.php │ ├── xmlschema.dtd │ ├── xmlschema03.dtd │ └── xsl │ │ ├── convert-0.1-0.2.xsl │ │ ├── convert-0.1-0.3.xsl │ │ ├── convert-0.2-0.1.xsl │ │ ├── convert-0.2-0.3.xsl │ │ ├── remove-0.2.xsl │ │ └── remove-0.3.xsl ├── antlr │ ├── ANTLRStringStream.php │ ├── AntlrLexer.php │ ├── AntlrParser.php │ ├── BaseRecognizer.php │ ├── CharStream.php │ ├── CharStreamState.php │ ├── CommonToken.php │ ├── CommonTokenStream.php │ ├── DFA.php │ ├── EarlyExitException.php │ ├── IntStream.php │ ├── MismatchedRangeException.php │ ├── MismatchedSetException.php │ ├── MismatchedTokenException.php │ ├── MissingTokenException.php │ ├── NoViableAltException.php │ ├── RecognitionException.php │ ├── RecognizerSharedState.php │ ├── Set.php │ ├── Token.php │ ├── TokenStream.php │ ├── antlr.php │ └── util.php ├── bootstrap │ ├── LICENSE │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── images │ │ │ ├── bx_loader.gif │ │ │ ├── controls.png │ │ │ ├── controls1.png │ │ │ └── wall1.jpg │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── README.md │ │ ├── bootbox.min.js │ │ ├── bootstrap-alert.js │ │ ├── bootstrap-button.js │ │ ├── bootstrap-carousel.js │ │ ├── bootstrap-collapse.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tab.js │ │ ├── bootstrap-tooltip.js │ │ ├── bootstrap-transition.js │ │ ├── bootstrap-typeahead.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── eternicode-bootstrap-datepicker │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── build.less │ │ │ │ └── build_standalone.less │ │ │ ├── css │ │ │ │ └── datepicker.css │ │ │ ├── js │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ ├── bootstrap-datepicker.br.js │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ ├── less │ │ │ │ └── datepicker.less │ │ │ └── tests │ │ │ │ ├── TESTS.md │ │ │ │ ├── _coverage.html │ │ │ │ ├── assets │ │ │ │ ├── coverage.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── mock.js │ │ │ │ ├── qunit-logging.js │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── utils.js │ │ │ │ ├── run-qunit.js │ │ │ │ ├── suites │ │ │ │ ├── component.js │ │ │ │ ├── formats.js │ │ │ │ ├── keyboard_navigation │ │ │ │ │ ├── 2011.js │ │ │ │ │ └── 2012.js │ │ │ │ ├── mouse_navigation │ │ │ │ │ ├── 2011.js │ │ │ │ │ └── 2012.js │ │ │ │ └── options.js │ │ │ │ └── tests.html │ │ ├── less.min.js │ │ └── tests │ │ │ ├── index.html │ │ │ ├── unit │ │ │ ├── bootstrap-alert.js │ │ │ ├── bootstrap-button.js │ │ │ ├── bootstrap-collapse.js │ │ │ ├── bootstrap-dropdown.js │ │ │ ├── bootstrap-modal.js │ │ │ ├── bootstrap-popover.js │ │ │ ├── bootstrap-scrollspy.js │ │ │ ├── bootstrap-tab.js │ │ │ ├── bootstrap-tooltip.js │ │ │ ├── bootstrap-transition.js │ │ │ └── bootstrap-typeahead.js │ │ │ └── vendor │ │ │ ├── jquery.js │ │ │ ├── qunit.css │ │ │ └── qunit.js │ └── less │ │ ├── datepicker.less │ │ └── mixins.less ├── csrf-magic │ ├── NEWS.txt │ ├── README.txt │ ├── csrf-magic.js │ └── csrf-magic.php ├── freetag │ ├── freetag.class.php │ └── license.txt ├── fullcalendar │ ├── fullcalendar-bootstrap.css │ ├── fullcalendar-bootstrap.less │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.css │ ├── fullcalendar.min.js │ ├── fullcalendar.print.css │ ├── fullcalendar.print.min.css │ ├── gcal.js │ ├── locale │ │ ├── af.js │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de-at.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en-ie.js │ │ ├── en-nz.js │ │ ├── es-do.js │ │ ├── es-us.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr-ca.js │ │ ├── fr-ch.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── ko.js │ │ ├── lb.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ms-my.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl-be.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cyrl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ └── moment.min.js ├── google-api-php-client │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── autoload.php │ ├── composer.json │ ├── src │ │ └── Google │ │ │ ├── Auth │ │ │ ├── Abstract.php │ │ │ ├── AppIdentity.php │ │ │ ├── AssertionCredentials.php │ │ │ ├── Exception.php │ │ │ ├── LoginTicket.php │ │ │ ├── OAuth2.php │ │ │ └── Simple.php │ │ │ ├── Cache │ │ │ ├── Abstract.php │ │ │ ├── Apc.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Memcache.php │ │ │ └── Null.php │ │ │ ├── Client.php │ │ │ ├── Collection.php │ │ │ ├── Config.php │ │ │ ├── Exception.php │ │ │ ├── Http │ │ │ ├── Batch.php │ │ │ ├── CacheParser.php │ │ │ ├── MediaFileUpload.php │ │ │ ├── REST.php │ │ │ └── Request.php │ │ │ ├── IO │ │ │ ├── Abstract.php │ │ │ ├── Curl.php │ │ │ ├── Exception.php │ │ │ ├── Stream.php │ │ │ └── cacerts.pem │ │ │ ├── Model.php │ │ │ ├── Service.php │ │ │ ├── Service │ │ │ ├── AdExchangeBuyer.php │ │ │ ├── AdExchangeSeller.php │ │ │ ├── AdSense.php │ │ │ ├── AdSenseHost.php │ │ │ ├── Admin.php │ │ │ ├── Analytics.php │ │ │ ├── AndroidPublisher.php │ │ │ ├── AppState.php │ │ │ ├── Appsactivity.php │ │ │ ├── Audit.php │ │ │ ├── Autoscaler.php │ │ │ ├── Bigquery.php │ │ │ ├── Blogger.php │ │ │ ├── Books.php │ │ │ ├── Calendar.php │ │ │ ├── CivicInfo.php │ │ │ ├── CloudMonitoring.php │ │ │ ├── Compute.php │ │ │ ├── Container.php │ │ │ ├── Coordinate.php │ │ │ ├── Customsearch.php │ │ │ ├── Datastore.php │ │ │ ├── Dfareporting.php │ │ │ ├── Directory.php │ │ │ ├── Dns.php │ │ │ ├── DoubleClickBidManager.php │ │ │ ├── Doubleclicksearch.php │ │ │ ├── Drive.php │ │ │ ├── Exception.php │ │ │ ├── Fitness.php │ │ │ ├── Freebase.php │ │ │ ├── Fusiontables.php │ │ │ ├── Games.php │ │ │ ├── GamesManagement.php │ │ │ ├── Genomics.php │ │ │ ├── Gmail.php │ │ │ ├── GroupsMigration.php │ │ │ ├── Groupssettings.php │ │ │ ├── IdentityToolkit.php │ │ │ ├── Licensing.php │ │ │ ├── Manager.php │ │ │ ├── MapsEngine.php │ │ │ ├── Mirror.php │ │ │ ├── Oauth2.php │ │ │ ├── Pagespeedonline.php │ │ │ ├── Plus.php │ │ │ ├── PlusDomains.php │ │ │ ├── Prediction.php │ │ │ ├── Pubsub.php │ │ │ ├── QPXExpress.php │ │ │ ├── Replicapool.php │ │ │ ├── Replicapoolupdater.php │ │ │ ├── Reports.php │ │ │ ├── Reseller.php │ │ │ ├── Resource.php │ │ │ ├── Resourceviews.php │ │ │ ├── SQLAdmin.php │ │ │ ├── ShoppingContent.php │ │ │ ├── SiteVerification.php │ │ │ ├── Spectrum.php │ │ │ ├── Storage.php │ │ │ ├── TagManager.php │ │ │ ├── Taskqueue.php │ │ │ ├── Tasks.php │ │ │ ├── Translate.php │ │ │ ├── Urlshortener.php │ │ │ ├── Webfonts.php │ │ │ ├── Webmasters.php │ │ │ ├── YouTube.php │ │ │ └── YouTubeAnalytics.php │ │ │ ├── Signer │ │ │ ├── Abstract.php │ │ │ └── P12.php │ │ │ ├── Utils.php │ │ │ ├── Utils │ │ │ └── URITemplate.php │ │ │ └── Verifier │ │ │ ├── Abstract.php │ │ │ └── Pem.php │ └── style │ │ └── ruleset.xml ├── guidersjs │ ├── README.html │ ├── README.md │ ├── guider_arrows.png │ ├── guiders-1.2.6.css │ ├── guiders-1.2.6.js │ └── x_close_button.jpg ├── html5shim │ └── html5.js ├── htmlpurifier │ ├── CREDITS │ ├── INSTALL │ ├── LICENSE │ ├── NEWS │ └── library │ │ ├── HTMLPurifier.auto.php │ │ ├── HTMLPurifier.autoload-legacy.php │ │ ├── HTMLPurifier.autoload.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.func.php │ │ ├── HTMLPurifier.includes.php │ │ ├── HTMLPurifier.kses.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.php │ │ ├── HTMLPurifier.safe-includes.php │ │ └── HTMLPurifier │ │ ├── Arborize.php │ │ ├── AttrCollections.php │ │ ├── AttrDef.php │ │ ├── AttrDef │ │ ├── CSS.php │ │ ├── CSS │ │ │ ├── AlphaValue.php │ │ │ ├── Background.php │ │ │ ├── BackgroundPosition.php │ │ │ ├── Border.php │ │ │ ├── Color.php │ │ │ ├── Composite.php │ │ │ ├── DenyElementDecorator.php │ │ │ ├── Filter.php │ │ │ ├── Font.php │ │ │ ├── FontFamily.php │ │ │ ├── Ident.php │ │ │ ├── ImportantDecorator.php │ │ │ ├── Length.php │ │ │ ├── ListStyle.php │ │ │ ├── Multiple.php │ │ │ ├── Number.php │ │ │ ├── Percentage.php │ │ │ ├── TextDecoration.php │ │ │ └── URI.php │ │ ├── Clone.php │ │ ├── Enum.php │ │ ├── HTML │ │ │ ├── Bool.php │ │ │ ├── Class.php │ │ │ ├── Color.php │ │ │ ├── FrameTarget.php │ │ │ ├── ID.php │ │ │ ├── Length.php │ │ │ ├── LinkTypes.php │ │ │ ├── MultiLength.php │ │ │ ├── Nmtokens.php │ │ │ └── Pixels.php │ │ ├── Integer.php │ │ ├── Lang.php │ │ ├── Switch.php │ │ ├── Text.php │ │ ├── URI.php │ │ └── URI │ │ │ ├── Email.php │ │ │ ├── Email │ │ │ └── SimpleCheck.php │ │ │ ├── Host.php │ │ │ ├── IPv4.php │ │ │ └── IPv6.php │ │ ├── AttrTransform.php │ │ ├── AttrTransform │ │ ├── Background.php │ │ ├── BdoDir.php │ │ ├── BgColor.php │ │ ├── BoolToCSS.php │ │ ├── Border.php │ │ ├── EnumToCSS.php │ │ ├── ImgRequired.php │ │ ├── ImgSpace.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Length.php │ │ ├── Name.php │ │ ├── NameSync.php │ │ ├── Nofollow.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeParam.php │ │ ├── ScriptRequired.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ └── Textarea.php │ │ ├── AttrTypes.php │ │ ├── AttrValidator.php │ │ ├── Bootstrap.php │ │ ├── CSSDefinition.php │ │ ├── ChildDef.php │ │ ├── ChildDef │ │ ├── Chameleon.php │ │ ├── Custom.php │ │ ├── Empty.php │ │ ├── List.php │ │ ├── Optional.php │ │ ├── Required.php │ │ ├── StrictBlockquote.php │ │ └── Table.php │ │ ├── Config.php │ │ ├── ConfigSchema.php │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.ID.HTML5.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TargetNoopener.txt │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── ContentSets.php │ │ ├── Context.php │ │ ├── Definition.php │ │ ├── DefinitionCache.php │ │ ├── DefinitionCache │ │ ├── Decorator.php │ │ ├── Decorator │ │ │ ├── Cleanup.php │ │ │ ├── Memory.php │ │ │ └── Template.php.in │ │ ├── Null.php │ │ ├── Serializer.php │ │ └── Serializer │ │ │ └── README │ │ ├── DefinitionCacheFactory.php │ │ ├── Doctype.php │ │ ├── DoctypeRegistry.php │ │ ├── ElementDef.php │ │ ├── Encoder.php │ │ ├── EntityLookup.php │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── EntityParser.php │ │ ├── ErrorCollector.php │ │ ├── ErrorStruct.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Generator.php │ │ ├── HTMLDefinition.php │ │ ├── HTMLModule.php │ │ ├── HTMLModule │ │ ├── Bdo.php │ │ ├── CommonAttributes.php │ │ ├── Edit.php │ │ ├── Forms.php │ │ ├── Hypertext.php │ │ ├── Iframe.php │ │ ├── Image.php │ │ ├── Legacy.php │ │ ├── List.php │ │ ├── Name.php │ │ ├── Nofollow.php │ │ ├── NonXMLCommonAttributes.php │ │ ├── Object.php │ │ ├── Presentation.php │ │ ├── Proprietary.php │ │ ├── Ruby.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeScripting.php │ │ ├── Scripting.php │ │ ├── StyleAttribute.php │ │ ├── Tables.php │ │ ├── Target.php │ │ ├── TargetBlank.php │ │ ├── TargetNoopener.php │ │ ├── TargetNoreferrer.php │ │ ├── Text.php │ │ ├── Tidy.php │ │ ├── Tidy │ │ │ ├── Name.php │ │ │ ├── Proprietary.php │ │ │ ├── Strict.php │ │ │ ├── Transitional.php │ │ │ ├── XHTML.php │ │ │ └── XHTMLAndHTML4.php │ │ └── XMLCommonAttributes.php │ │ ├── HTMLModuleManager.php │ │ ├── IDAccumulator.php │ │ ├── Injector.php │ │ ├── Injector │ │ ├── AutoParagraph.php │ │ ├── DisplayLinkURI.php │ │ ├── Linkify.php │ │ ├── PurifierLinkify.php │ │ ├── RemoveEmpty.php │ │ ├── RemoveSpansWithoutAttributes.php │ │ └── SafeObject.php │ │ ├── Language.php │ │ ├── Language │ │ ├── classes │ │ │ └── en-x-test.php │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ ├── en-x-testmini.php │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── DOMLex.php │ │ ├── DirectLex.php │ │ └── PH5P.php │ │ ├── Node.php │ │ ├── Node │ │ ├── Comment.php │ │ ├── Element.php │ │ └── Text.php │ │ ├── PercentEncoder.php │ │ ├── Printer.php │ │ ├── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php │ │ ├── PropertyList.php │ │ ├── PropertyListIterator.php │ │ ├── Queue.php │ │ ├── Strategy.php │ │ ├── Strategy │ │ ├── Composite.php │ │ ├── Core.php │ │ ├── FixNesting.php │ │ ├── MakeWellFormed.php │ │ ├── RemoveForeignElements.php │ │ └── ValidateAttributes.php │ │ ├── StringHash.php │ │ ├── StringHashParser.php │ │ ├── TagTransform.php │ │ ├── TagTransform │ │ ├── Font.php │ │ └── Simple.php │ │ ├── Token.php │ │ ├── Token │ │ ├── Comment.php │ │ ├── Empty.php │ │ ├── End.php │ │ ├── Start.php │ │ ├── Tag.php │ │ └── Text.php │ │ ├── TokenFactory.php │ │ ├── URI.php │ │ ├── URIDefinition.php │ │ ├── URIFilter.php │ │ ├── URIFilter │ │ ├── DisableExternal.php │ │ ├── DisableExternalResources.php │ │ ├── DisableResources.php │ │ ├── HostBlacklist.php │ │ ├── MakeAbsolute.php │ │ ├── Munge.php │ │ └── SafeIframe.php │ │ ├── URIParser.php │ │ ├── URIScheme.php │ │ ├── URIScheme │ │ ├── data.php │ │ ├── file.php │ │ ├── ftp.php │ │ ├── http.php │ │ ├── https.php │ │ ├── mailto.php │ │ ├── news.php │ │ ├── nntp.php │ │ └── tel.php │ │ ├── URISchemeRegistry.php │ │ ├── UnitConverter.php │ │ ├── VarParser.php │ │ ├── VarParser │ │ ├── Flexible.php │ │ └── Native.php │ │ ├── VarParserException.php │ │ └── Zipper.php ├── jquery │ ├── autosize │ │ ├── autosize.js │ │ └── autosize.min.js │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ └── chosen.jquery.min.js │ ├── ckeditor │ │ ├── .htaccess │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── ckeditor.php │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es-mx.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── balloonpanel │ │ │ │ └── skins │ │ │ │ │ ├── kama │ │ │ │ │ └── balloonpanel.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── close.png │ │ │ │ │ └── moono │ │ │ │ │ ├── balloonpanel.css │ │ │ │ │ └── images │ │ │ │ │ ├── close.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── close.png │ │ │ ├── balloontoolbar │ │ │ │ └── skins │ │ │ │ │ ├── default.css │ │ │ │ │ ├── kama │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ ├── moono-lisa │ │ │ │ │ └── balloontoolbar.css │ │ │ │ │ └── moono │ │ │ │ │ └── balloontoolbar.css │ │ │ ├── base64image │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ └── base64image.js │ │ │ │ ├── icons │ │ │ │ │ ├── base64image.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── base64image.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── cloudservices │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ └── dialogs │ │ │ │ │ ├── colordialog.css │ │ │ │ │ └── colordialog.js │ │ │ ├── copyformatting │ │ │ │ ├── cursors │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ └── cursor.svg │ │ │ │ └── styles │ │ │ │ │ └── copyformatting.css │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ └── styles │ │ │ │ │ └── dialog.css │ │ │ ├── div │ │ │ │ └── dialogs │ │ │ │ │ └── div.js │ │ │ ├── easyimage │ │ │ │ ├── dialogs │ │ │ │ │ └── easyimagealt.js │ │ │ │ └── styles │ │ │ │ │ └── easyimage.css │ │ │ ├── find │ │ │ │ └── dialogs │ │ │ │ │ └── find.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── imagebase │ │ │ │ └── styles │ │ │ │ │ └── imagebase.css │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── liststyle │ │ │ │ └── dialogs │ │ │ │ │ └── liststyle.js │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── maximize │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── maximize.png │ │ │ │ │ └── maximize.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── pastefromgdocs │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── pastefromword │ │ │ │ ├── filter │ │ │ │ │ └── default.js │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── pastefromword-rtl.png │ │ │ │ │ │ └── pastefromword.png │ │ │ │ │ ├── pastefromword-rtl.png │ │ │ │ │ └── pastefromword.png │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── plugin.js │ │ │ ├── pastetools │ │ │ │ └── filter │ │ │ │ │ ├── common.js │ │ │ │ │ └── image.js │ │ │ ├── preview │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── preview.html │ │ │ │ └── styles │ │ │ │ │ └── screen.css │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── scayt.css │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ └── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ └── wink_smile.png │ │ │ ├── specialchar │ │ │ │ ├── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableselection │ │ │ │ └── styles │ │ │ │ │ └── tableselection.css │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ ├── templates.css │ │ │ │ │ └── templates.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ ├── skins │ │ │ └── moono-lisa │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ ├── styles.js │ │ ├── themes │ │ │ └── default │ │ │ │ └── theme.js │ │ └── vendor │ │ │ └── promise.js │ ├── colorpicker │ │ ├── css │ │ │ └── colorpicker.css │ │ ├── images │ │ │ ├── blank.gif │ │ │ ├── colorpicker_background.png │ │ │ ├── colorpicker_hex.png │ │ │ ├── colorpicker_hsb_b.png │ │ │ ├── colorpicker_hsb_h.png │ │ │ ├── colorpicker_hsb_s.png │ │ │ ├── colorpicker_indic.gif │ │ │ ├── colorpicker_overlay.png │ │ │ ├── colorpicker_rgb_b.png │ │ │ ├── colorpicker_rgb_g.png │ │ │ ├── colorpicker_rgb_r.png │ │ │ ├── colorpicker_select.gif │ │ │ ├── colorpicker_submit.png │ │ │ ├── custom_background.png │ │ │ ├── custom_hex.png │ │ │ ├── custom_hsb_b.png │ │ │ ├── custom_hsb_h.png │ │ │ ├── custom_hsb_s.png │ │ │ ├── custom_indic.gif │ │ │ ├── custom_rgb_b.png │ │ │ ├── custom_rgb_g.png │ │ │ ├── custom_rgb_r.png │ │ │ ├── custom_submit.png │ │ │ ├── select.png │ │ │ ├── select2.png │ │ │ └── slider.png │ │ ├── js │ │ │ └── colorpicker.js │ │ └── readme.txt │ ├── dangrossman-bootstrap-daterangepicker │ │ ├── README.md │ │ ├── date.js │ │ ├── daterangepicker.css │ │ └── daterangepicker.js │ ├── datepicker │ │ ├── css │ │ │ ├── datepicker.css │ │ │ └── layout.css │ │ ├── images │ │ │ ├── custom_b.png │ │ │ ├── custom_bl.png │ │ │ ├── custom_br.png │ │ │ ├── custom_l.png │ │ │ ├── custom_r.png │ │ │ ├── custom_t.png │ │ │ ├── custom_tl.png │ │ │ ├── custom_tr.png │ │ │ ├── datepicker_b.png │ │ │ ├── datepicker_bl.png │ │ │ ├── datepicker_br.png │ │ │ ├── datepicker_l.png │ │ │ ├── datepicker_r.png │ │ │ ├── datepicker_t.png │ │ │ ├── datepicker_tl.png │ │ │ ├── datepicker_tr.png │ │ │ └── field.png │ │ └── js │ │ │ └── datepicker.js │ ├── defunkt-jquery-pjax │ │ ├── LICENSE │ │ ├── README.md │ │ ├── jquery.pjax.js │ │ └── test │ │ │ ├── app.rb │ │ │ ├── jquery-1.7.2.js │ │ │ ├── qunit-1.6.0.css │ │ │ ├── qunit-1.6.0.js │ │ │ ├── run-qunit.coffee │ │ │ ├── unit │ │ │ ├── fn_pjax.js │ │ │ ├── pjax.js │ │ │ └── pjax_fallback.js │ │ │ └── views │ │ │ ├── aliens.erb │ │ │ ├── boom.erb │ │ │ ├── dinosaurs.erb │ │ │ ├── double_title.erb │ │ │ ├── empty.erb │ │ │ ├── env.erb │ │ │ ├── fragment.erb │ │ │ ├── hello.erb │ │ │ ├── home.erb │ │ │ ├── layout.erb │ │ │ ├── long.erb │ │ │ ├── nested_title.erb │ │ │ ├── qunit.erb │ │ │ ├── referer.erb │ │ │ └── timeout.erb │ ├── gridster │ │ ├── jquery.gridster.min.css │ │ └── jquery.gridster.min.js │ ├── handsontable │ │ ├── extensions │ │ │ ├── jquery.handsontable.removeRow.css │ │ │ └── jquery.handsontable.removeRow.js │ │ ├── jQuery-contextMenu │ │ │ ├── jquery.contextMenu.css │ │ │ ├── jquery.contextMenu.js │ │ │ └── jquery.ui.position.js │ │ ├── jquery.handsontable.css │ │ └── jquery.handsontable.js │ ├── jqplot │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── changes.txt │ │ ├── copyright.txt │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── gpl-2.0.txt │ │ ├── jqPlotCssStyling.txt │ │ ├── jqPlotOptions.txt │ │ ├── jquery.jqplot.css │ │ ├── jquery.jqplot.js │ │ ├── jquery.jqplot.min.css │ │ ├── jquery.jqplot.min.js │ │ ├── optionsTutorial.txt │ │ ├── plugins │ │ │ ├── jqplot.BezierCurveRenderer.js │ │ │ ├── jqplot.BezierCurveRenderer.min.js │ │ │ ├── jqplot.barRenderer.js │ │ │ ├── jqplot.barRenderer.min.js │ │ │ ├── jqplot.blockRenderer.js │ │ │ ├── jqplot.blockRenderer.min.js │ │ │ ├── jqplot.bubbleRenderer.js │ │ │ ├── jqplot.bubbleRenderer.min.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.min.js │ │ │ ├── jqplot.canvasAxisTickRenderer.js │ │ │ ├── jqplot.canvasAxisTickRenderer.min.js │ │ │ ├── jqplot.canvasOverlay.js │ │ │ ├── jqplot.canvasOverlay.min.js │ │ │ ├── jqplot.canvasTextRenderer.js │ │ │ ├── jqplot.canvasTextRenderer.min.js │ │ │ ├── jqplot.categoryAxisRenderer.js │ │ │ ├── jqplot.categoryAxisRenderer.min.js │ │ │ ├── jqplot.ciParser.js │ │ │ ├── jqplot.ciParser.min.js │ │ │ ├── jqplot.cursor.js │ │ │ ├── jqplot.cursor.min.js │ │ │ ├── jqplot.dateAxisRenderer.js │ │ │ ├── jqplot.dateAxisRenderer.min.js │ │ │ ├── jqplot.donutRenderer.js │ │ │ ├── jqplot.donutRenderer.min.js │ │ │ ├── jqplot.dragable.js │ │ │ ├── jqplot.dragable.min.js │ │ │ ├── jqplot.enhancedLegendRenderer.js │ │ │ ├── jqplot.enhancedLegendRenderer.min.js │ │ │ ├── jqplot.funnelRenderer.js │ │ │ ├── jqplot.funnelRenderer.min.js │ │ │ ├── jqplot.highlighter.js │ │ │ ├── jqplot.highlighter.min.js │ │ │ ├── jqplot.json2.js │ │ │ ├── jqplot.json2.min.js │ │ │ ├── jqplot.logAxisRenderer.js │ │ │ ├── jqplot.logAxisRenderer.min.js │ │ │ ├── jqplot.mekkoAxisRenderer.js │ │ │ ├── jqplot.mekkoAxisRenderer.min.js │ │ │ ├── jqplot.mekkoRenderer.js │ │ │ ├── jqplot.mekkoRenderer.min.js │ │ │ ├── jqplot.meterGaugeRenderer.js │ │ │ ├── jqplot.meterGaugeRenderer.min.js │ │ │ ├── jqplot.mobile.js │ │ │ ├── jqplot.mobile.min.js │ │ │ ├── jqplot.ohlcRenderer.js │ │ │ ├── jqplot.ohlcRenderer.min.js │ │ │ ├── jqplot.pieRenderer.js │ │ │ ├── jqplot.pieRenderer.min.js │ │ │ ├── jqplot.pointLabels.js │ │ │ ├── jqplot.pointLabels.min.js │ │ │ ├── jqplot.pyramidAxisRenderer.js │ │ │ ├── jqplot.pyramidAxisRenderer.min.js │ │ │ ├── jqplot.pyramidGridRenderer.js │ │ │ ├── jqplot.pyramidGridRenderer.min.js │ │ │ ├── jqplot.pyramidRenderer.js │ │ │ ├── jqplot.pyramidRenderer.min.js │ │ │ ├── jqplot.trendline.js │ │ │ └── jqplot.trendline.min.js │ │ └── usage.txt │ ├── jquery-ui │ │ ├── README.md │ │ ├── css │ │ │ └── custom-theme │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ └── ui-icons_f6cf3b_256x240.png │ │ │ │ ├── jquery-ui-1.8.16.custom.css │ │ │ │ └── jquery.ui.1.8.16.ie.css │ │ ├── js │ │ │ └── jquery-ui-1.8.16.custom.min.js │ │ └── third-party │ │ │ ├── jQuery-UI-Date-Range-Picker │ │ │ ├── css │ │ │ │ └── ui.daterangepicker.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── date.js │ │ │ │ ├── daterangepicker.jQuery.compressed.js │ │ │ │ └── daterangepicker.jQuery.js │ │ │ ├── jQuery-UI-FileInput │ │ │ ├── css │ │ │ │ └── enhanced.css │ │ │ ├── images │ │ │ │ ├── icon-generic.gif │ │ │ │ ├── icon-image.gif │ │ │ │ ├── icon-media.gif │ │ │ │ └── icon-zip.gif │ │ │ └── js │ │ │ │ ├── enhance.min.js │ │ │ │ └── fileinput.jquery.js │ │ │ └── wijmo │ │ │ ├── jquery.bgiframe-2.1.3-pre.js │ │ │ ├── jquery.mousewheel.min.js │ │ │ ├── jquery.wijmo-open.1.5.0.css │ │ │ └── jquery.wijmo-open.1.5.0.min.js │ ├── jquery.additions.js │ ├── jquery.ajaxq.js │ ├── jquery.ba-outside-events.min.js │ ├── jquery.blockUI.js │ ├── jquery.class.min.js │ ├── jquery.cycle.min.js │ ├── jquery.datepick.package-4.1.0 │ │ ├── calendar-blue.gif │ │ ├── calendar-green.gif │ │ ├── calendar.gif │ │ ├── datepickBasic.html │ │ ├── flora.datepick.css │ │ ├── humanity.datepick.css │ │ ├── jquery.datepick-af.js │ │ ├── jquery.datepick-am.js │ │ ├── jquery.datepick-ar-DZ.js │ │ ├── jquery.datepick-ar-EG.js │ │ ├── jquery.datepick-ar.js │ │ ├── jquery.datepick-az.js │ │ ├── jquery.datepick-bg.js │ │ ├── jquery.datepick-bs.js │ │ ├── jquery.datepick-ca.js │ │ ├── jquery.datepick-cs.js │ │ ├── jquery.datepick-da.js │ │ ├── jquery.datepick-de-CH.js │ │ ├── jquery.datepick-de.js │ │ ├── jquery.datepick-el.js │ │ ├── jquery.datepick-en-AU.js │ │ ├── jquery.datepick-en-GB.js │ │ ├── jquery.datepick-en-NZ.js │ │ ├── jquery.datepick-eo.js │ │ ├── jquery.datepick-es-AR.js │ │ ├── jquery.datepick-es-PE.js │ │ ├── jquery.datepick-es.js │ │ ├── jquery.datepick-et.js │ │ ├── jquery.datepick-eu.js │ │ ├── jquery.datepick-fa.js │ │ ├── jquery.datepick-fi.js │ │ ├── jquery.datepick-fo.js │ │ ├── jquery.datepick-fr-CH.js │ │ ├── jquery.datepick-fr.js │ │ ├── jquery.datepick-gl.js │ │ ├── jquery.datepick-gu.js │ │ ├── jquery.datepick-he.js │ │ ├── jquery.datepick-hi-IN.js │ │ ├── jquery.datepick-hi.js │ │ ├── jquery.datepick-hr.js │ │ ├── jquery.datepick-hu.js │ │ ├── jquery.datepick-hy.js │ │ ├── jquery.datepick-id.js │ │ ├── jquery.datepick-is.js │ │ ├── jquery.datepick-it.js │ │ ├── jquery.datepick-ja.js │ │ ├── jquery.datepick-ka.js │ │ ├── jquery.datepick-km.js │ │ ├── jquery.datepick-ko.js │ │ ├── jquery.datepick-lt.js │ │ ├── jquery.datepick-lv.js │ │ ├── jquery.datepick-me-ME.js │ │ ├── jquery.datepick-me.js │ │ ├── jquery.datepick-mk.js │ │ ├── jquery.datepick-ml.js │ │ ├── jquery.datepick-ms.js │ │ ├── jquery.datepick-mt.js │ │ ├── jquery.datepick-nl-BE.js │ │ ├── jquery.datepick-nl.js │ │ ├── jquery.datepick-no.js │ │ ├── jquery.datepick-pl.js │ │ ├── jquery.datepick-pt-BR.js │ │ ├── jquery.datepick-pt.js │ │ ├── jquery.datepick-rm.js │ │ ├── jquery.datepick-ro.js │ │ ├── jquery.datepick-ru.js │ │ ├── jquery.datepick-sk.js │ │ ├── jquery.datepick-sl.js │ │ ├── jquery.datepick-sq.js │ │ ├── jquery.datepick-sr-SR.js │ │ ├── jquery.datepick-sr.js │ │ ├── jquery.datepick-sv.js │ │ ├── jquery.datepick-ta.js │ │ ├── jquery.datepick-th.js │ │ ├── jquery.datepick-tr.js │ │ ├── jquery.datepick-uk.js │ │ ├── jquery.datepick-ur.js │ │ ├── jquery.datepick-vi.js │ │ ├── jquery.datepick-zh-CN.js │ │ ├── jquery.datepick-zh-HK.js │ │ ├── jquery.datepick-zh-TW.js │ │ ├── jquery.datepick.css │ │ ├── jquery.datepick.ext.js │ │ ├── jquery.datepick.ext.min.js │ │ ├── jquery.datepick.js │ │ ├── jquery.datepick.lang.js │ │ ├── jquery.datepick.lang.min.js │ │ ├── jquery.datepick.min.js │ │ ├── jquery.datepick.validation.js │ │ ├── jquery.datepick.validation.min.js │ │ ├── redmond.datepick.css │ │ ├── smoothness.datepick.css │ │ ├── ui-black-tie.datepick.css │ │ ├── ui-blitzer.datepick.css │ │ ├── ui-cupertino.datepick.css │ │ ├── ui-dark-hive.datepick.css │ │ ├── ui-dot-luv.datepick.css │ │ ├── ui-eggplant.datepick.css │ │ ├── ui-excite-bike.datepick.css │ │ ├── ui-flick.datepick.css │ │ ├── ui-hot-sneaks.datepick.css │ │ ├── ui-humanity.datepick.css │ │ ├── ui-le-frog.datepick.css │ │ ├── ui-mint-choc.datepick.css │ │ ├── ui-overcast.datepick.css │ │ ├── ui-pepper-grinder.datepick.css │ │ ├── ui-redmond.datepick.css │ │ ├── ui-smoothness.datepick.css │ │ ├── ui-south-street.datepick.css │ │ ├── ui-start.datepick.css │ │ ├── ui-sunny.datepick.css │ │ ├── ui-swanky-purse.datepick.css │ │ ├── ui-trontastic.datepick.css │ │ ├── ui-ui-darkness.datepick.css │ │ ├── ui-ui-lightness.datepick.css │ │ ├── ui-vader.datepick.css │ │ └── ui.datepick.css │ ├── jquery.easing.1.3.js │ ├── jquery.fitvids.js │ ├── jquery.form.js │ ├── jquery.hoverIntent.minified.js │ ├── jquery.jeditable.min.js │ ├── jquery.jqote2.min.js │ ├── jquery.min.js │ ├── jquery.printf.min.js │ ├── jquery.sparkline.min.js │ ├── jquery.spin.min.js │ ├── jquery.tagcloud.js │ ├── jquery.virtualpages.js │ ├── jqueryRating.js │ ├── jquery_windowmsg.js │ ├── jstorage.min.js │ ├── license.txt │ ├── malihu-custom-scrollbar │ │ ├── css │ │ │ └── jquery.mCustomScrollbar.css │ │ ├── js │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ └── jquery.mousewheel.js │ │ └── source_files │ │ │ └── mCSB_buttons.psd │ ├── multiplefileupload │ │ ├── jquery_MultiFile.js │ │ └── readme.txt │ ├── pnotify │ │ ├── jquery.pnotify.default.css │ │ ├── jquery.pnotify.js │ │ ├── jquery.pnotify.min.js │ │ └── use for pines style icons │ │ │ └── jquery.pnotify.default.icons.css │ ├── posabsolute-jQuery-Validation-Engine │ │ ├── css │ │ │ └── validationEngine.jquery.css │ │ └── js │ │ │ ├── jquery.validationEngine-en.js │ │ │ ├── jquery.validationEngine.js │ │ │ └── languages │ │ │ ├── jquery.validationEngine-ca.js │ │ │ ├── jquery.validationEngine-cz.js │ │ │ ├── jquery.validationEngine-da.js │ │ │ ├── jquery.validationEngine-de.js │ │ │ ├── jquery.validationEngine-en.js │ │ │ ├── jquery.validationEngine-es.js │ │ │ ├── jquery.validationEngine-et.js │ │ │ ├── jquery.validationEngine-fa.js │ │ │ ├── jquery.validationEngine-fi.js │ │ │ ├── jquery.validationEngine-fr.js │ │ │ ├── jquery.validationEngine-hr.js │ │ │ ├── jquery.validationEngine-hu.js │ │ │ ├── jquery.validationEngine-id.js │ │ │ ├── jquery.validationEngine-it.js │ │ │ ├── jquery.validationEngine-ja.js │ │ │ ├── jquery.validationEngine-lt.js │ │ │ ├── jquery.validationEngine-nl.js │ │ │ ├── jquery.validationEngine-no.js │ │ │ ├── jquery.validationEngine-pl.js │ │ │ ├── jquery.validationEngine-pt.js │ │ │ ├── jquery.validationEngine-pt_BR.js │ │ │ ├── jquery.validationEngine-ro.js │ │ │ ├── jquery.validationEngine-ru.js │ │ │ ├── jquery.validationEngine-sv.js │ │ │ ├── jquery.validationEngine-tr.js │ │ │ ├── jquery.validationEngine-vi.js │ │ │ ├── jquery.validationEngine-zh_CN.js │ │ │ └── jquery.validationEngine-zh_TW.js │ ├── rochal-jQuery-slimScroll │ │ ├── README.md │ │ ├── slimScroll.js │ │ └── slimScroll.min.js │ ├── select2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── release.sh │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2x2.png │ │ └── spinner.gif │ └── timepicker │ │ ├── README.md │ │ ├── grunt.js │ │ ├── index.html │ │ ├── jquery.timepicker.css │ │ ├── jquery.timepicker.js │ │ ├── jquery.timepicker.min.js │ │ ├── lib │ │ ├── base.css │ │ ├── base.js │ │ ├── datepair.js │ │ └── screenshot.png │ │ └── package.json ├── log4php.debug │ ├── Logger.php │ ├── LoggerAppender.php │ ├── LoggerAppenderPool.php │ ├── LoggerAutoloader.php │ ├── LoggerConfigurable.php │ ├── LoggerConfigurator.php │ ├── LoggerException.php │ ├── LoggerFilter.php │ ├── LoggerHierarchy.php │ ├── LoggerLayout.php │ ├── LoggerLevel.php │ ├── LoggerLocationInfo.php │ ├── LoggerLoggingEvent.php │ ├── LoggerMDC.php │ ├── LoggerNDC.php │ ├── LoggerReflectionUtils.php │ ├── LoggerRoot.php │ ├── LoggerThrowableInformation.php │ ├── appenders │ │ ├── LoggerAppenderConsole.php │ │ ├── LoggerAppenderDailyFile.php │ │ ├── LoggerAppenderEcho.php │ │ ├── LoggerAppenderFile.php │ │ ├── LoggerAppenderFirePHP.php │ │ ├── LoggerAppenderMail.php │ │ ├── LoggerAppenderMailEvent.php │ │ ├── LoggerAppenderMongoDB.php │ │ ├── LoggerAppenderNull.php │ │ ├── LoggerAppenderPDO.php │ │ ├── LoggerAppenderPhp.php │ │ ├── LoggerAppenderRollingFile.php │ │ ├── LoggerAppenderSocket.php │ │ └── LoggerAppenderSyslog.php │ ├── configurators │ │ ├── LoggerConfigurationAdapter.php │ │ ├── LoggerConfigurationAdapterINI.php │ │ ├── LoggerConfigurationAdapterPHP.php │ │ ├── LoggerConfigurationAdapterXML.php │ │ └── LoggerConfiguratorDefault.php │ ├── filters │ │ ├── LoggerFilterDenyAll.php │ │ ├── LoggerFilterLevelMatch.php │ │ ├── LoggerFilterLevelRange.php │ │ └── LoggerFilterStringMatch.php │ ├── helpers │ │ ├── LoggerFormattingInfo.php │ │ ├── LoggerOptionConverter.php │ │ ├── LoggerPatternParser.php │ │ └── LoggerUtils.php │ ├── layouts │ │ ├── LoggerLayoutHtml.php │ │ ├── LoggerLayoutPattern.php │ │ ├── LoggerLayoutSerialized.php │ │ ├── LoggerLayoutSimple.php │ │ ├── LoggerLayoutTTCC.php │ │ └── LoggerLayoutXml.php │ ├── pattern │ │ ├── LoggerPatternConverter.php │ │ ├── LoggerPatternConverterClass.php │ │ ├── LoggerPatternConverterCookie.php │ │ ├── LoggerPatternConverterDate.php │ │ ├── LoggerPatternConverterEnvironment.php │ │ ├── LoggerPatternConverterFile.php │ │ ├── LoggerPatternConverterLevel.php │ │ ├── LoggerPatternConverterLine.php │ │ ├── LoggerPatternConverterLiteral.php │ │ ├── LoggerPatternConverterLocation.php │ │ ├── LoggerPatternConverterLogger.php │ │ ├── LoggerPatternConverterMDC.php │ │ ├── LoggerPatternConverterMessage.php │ │ ├── LoggerPatternConverterMethod.php │ │ ├── LoggerPatternConverterNDC.php │ │ ├── LoggerPatternConverterNewLine.php │ │ ├── LoggerPatternConverterProcess.php │ │ ├── LoggerPatternConverterRelative.php │ │ ├── LoggerPatternConverterRequest.php │ │ ├── LoggerPatternConverterServer.php │ │ ├── LoggerPatternConverterSession.php │ │ ├── LoggerPatternConverterSessionID.php │ │ ├── LoggerPatternConverterSuperglobal.php │ │ └── LoggerPatternConverterThrowable.php │ ├── renderers │ │ ├── LoggerRenderer.php │ │ ├── LoggerRendererDefault.php │ │ ├── LoggerRendererException.php │ │ └── LoggerRendererMap.php │ └── xml │ │ └── log4php.dtd ├── log4php │ ├── LoggerManager.php │ └── LoggerPropertyConfigurator.php ├── magpierss │ ├── extlib │ │ └── Snoopy.class.inc │ ├── rss_cache.inc │ ├── rss_fetch.inc │ ├── rss_parse.inc │ └── rss_utils.inc ├── nusoap │ ├── changelog │ ├── class.nusoap_base.php │ ├── class.soap_fault.php │ ├── class.soap_parser.php │ ├── class.soap_server.php │ ├── class.soap_transport_http.php │ ├── class.soap_val.php │ ├── class.soapclient.php │ ├── class.wsdl.php │ ├── class.wsdlcache.php │ ├── class.xmlschema.php │ ├── nusoap.php │ └── nusoapmime.php └── tcpdf │ ├── CHANGELOG.TXT │ ├── LICENSE.TXT │ ├── README.md │ ├── VERSION │ ├── composer.json │ ├── config │ └── tcpdf_config.php │ ├── fonts │ ├── .noencode │ ├── FreeMono.ctg.z │ ├── FreeMono.z │ ├── FreeMonoBold.ctg.z │ ├── FreeMonoBold.z │ ├── FreeMonoBoldOblique.ctg.z │ ├── FreeMonoBoldOblique.z │ ├── FreeMonoOblique.ctg.z │ ├── FreeMonoOblique.z │ ├── FreeSans.ctg.z │ ├── FreeSans.z │ ├── FreeSansBold.ctg.z │ ├── FreeSansBold.z │ ├── FreeSansBoldOblique.ctg.z │ ├── FreeSansBoldOblique.z │ ├── FreeSansOblique.ctg.z │ ├── FreeSansOblique.z │ ├── FreeSerifBold.ctg.z │ ├── FreeSerifBold.z │ ├── FreeSerifBoldItalic.ctg.z │ ├── FreeSerifBoldItalic.z │ ├── FreeSerifItalic.ctg.z │ ├── FreeSerifItalic.z │ ├── README.TXT │ ├── ZarBold.ctg.z │ ├── ZarBold.z │ ├── ae_fonts_2.0 │ │ ├── COPYING │ │ ├── ChangeLog │ │ └── README │ ├── aealarabiya.ctg.z │ ├── aealarabiya.php │ ├── aealarabiya.z │ ├── aefurat.ctg.z │ ├── aefurat.php │ ├── aefurat.z │ ├── almohanad.ctg.z │ ├── almohanad.php │ ├── almohanad.z │ ├── arialunicid0.php │ ├── cid0cs.php │ ├── cid0ct.php │ ├── cid0jp.php │ ├── cid0kr.php │ ├── courier.php │ ├── courierb.php │ ├── courierbi.php │ ├── courieri.php │ ├── dejavu-fonts-ttf-2.25 │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── langcover.txt │ │ └── unicover.txt │ ├── dejavu-fonts-ttf-2.33 │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── langcover.txt │ │ ├── status.txt │ │ └── unicover.txt │ ├── dejavu-fonts-ttf-2.34 │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── langcover.txt │ │ └── unicover.txt │ ├── dejavu-ttf-2.15 │ │ ├── AUTHORS │ │ ├── BUGS │ │ ├── LICENSE │ │ ├── NEWS │ │ ├── README │ │ ├── langcover.txt │ │ ├── status.txt │ │ └── unicover.txt │ ├── dejavusans-extralight.php │ ├── dejavusans.ctg.z │ ├── dejavusans.php │ ├── dejavusans.z │ ├── dejavusansb.ctg.z │ ├── dejavusansb.php │ ├── dejavusansb.z │ ├── dejavusansbi.ctg.z │ ├── dejavusansbi.php │ ├── dejavusansbi.z │ ├── dejavusanscondensed.ctg.z │ ├── dejavusanscondensed.php │ ├── dejavusanscondensed.z │ ├── dejavusanscondensedb.ctg.z │ ├── dejavusanscondensedb.php │ ├── dejavusanscondensedb.z │ ├── dejavusanscondensedbi.ctg.z │ ├── dejavusanscondensedbi.php │ ├── dejavusanscondensedbi.z │ ├── dejavusanscondensedi.ctg.z │ ├── dejavusanscondensedi.php │ ├── dejavusanscondensedi.z │ ├── dejavusansextralight.ctg.z │ ├── dejavusansextralight.php │ ├── dejavusansextralight.z │ ├── dejavusansi.ctg.z │ ├── dejavusansi.php │ ├── dejavusansi.z │ ├── dejavusansmono.ctg.z │ ├── dejavusansmono.php │ ├── dejavusansmono.z │ ├── dejavusansmonob.ctg.z │ ├── dejavusansmonob.php │ ├── dejavusansmonob.z │ ├── dejavusansmonobi.ctg.z │ ├── dejavusansmonobi.php │ ├── dejavusansmonobi.z │ ├── dejavusansmonoi.ctg.z │ ├── dejavusansmonoi.php │ ├── dejavusansmonoi.z │ ├── dejavuserif.ctg.z │ ├── dejavuserif.php │ ├── dejavuserif.z │ ├── dejavuserifb.ctg.z │ ├── dejavuserifb.php │ ├── dejavuserifb.z │ ├── dejavuserifbi.ctg.z │ ├── dejavuserifbi.php │ ├── dejavuserifbi.z │ ├── dejavuserifcondensed.ctg.z │ ├── dejavuserifcondensed.php │ ├── dejavuserifcondensed.z │ ├── dejavuserifcondensedb.ctg.z │ ├── dejavuserifcondensedb.php │ ├── dejavuserifcondensedb.z │ ├── dejavuserifcondensedbi.ctg.z │ ├── dejavuserifcondensedbi.php │ ├── dejavuserifcondensedbi.z │ ├── dejavuserifcondensedi.ctg.z │ ├── dejavuserifcondensedi.php │ ├── dejavuserifcondensedi.z │ ├── dejavuserifi.ctg.z │ ├── dejavuserifi.php │ ├── dejavuserifi.z │ ├── freefont-20060126 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── INSTALL │ │ └── README │ ├── freefont-20100919 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── INSTALL │ │ └── README │ ├── freefont-20120503 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── README │ │ ├── TROUBLESHOOTING │ │ └── USAGE │ ├── freefont │ │ ├── AUTHORS │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── INSTALL │ │ └── README │ ├── freemono.php │ ├── freemonob.ctg.z │ ├── freemonob.php │ ├── freemonob.z │ ├── freemonobi.ctg.z │ ├── freemonobi.php │ ├── freemonobi.z │ ├── freemonoi.ctg.z │ ├── freemonoi.php │ ├── freemonoi.z │ ├── freesans.php │ ├── freesansb.ctg.z │ ├── freesansb.php │ ├── freesansb.z │ ├── freesansbi.ctg.z │ ├── freesansbi.php │ ├── freesansbi.z │ ├── freesansi.ctg.z │ ├── freesansi.php │ ├── freesansi.z │ ├── freeserif.ctg.z │ ├── freeserif.php │ ├── freeserif.z │ ├── freeserifb.ctg.z │ ├── freeserifb.php │ ├── freeserifb.z │ ├── freeserifbi.ctg.z │ ├── freeserifbi.php │ ├── freeserifbi.z │ ├── freeserifi.ctg.z │ ├── freeserifi.php │ ├── freeserifi.z │ ├── helvetica.ctg.z │ ├── helvetica.php │ ├── helvetica.ufm │ ├── helvetica.z │ ├── helveticab.ctg.z │ ├── helveticab.php │ ├── helveticab.ufm │ ├── helveticab.z │ ├── helveticabi.ctg.z │ ├── helveticabi.php │ ├── helveticabi.ufm │ ├── helveticabi.z │ ├── helveticai.ctg.z │ ├── helveticai.php │ ├── helveticai.ufm │ ├── helveticai.z │ ├── hysmyeongjostdmedium.php │ ├── kozgopromedium.php │ ├── kozminproregular.php │ ├── msungstdlight.php │ ├── old │ │ ├── .noencode │ │ ├── courier.php │ │ ├── helvetica.php │ │ ├── helveticab.php │ │ ├── helveticabi.php │ │ ├── helveticai.php │ │ ├── makefont │ │ │ ├── cp1250.map │ │ │ ├── cp1251.map │ │ │ ├── cp1252.map │ │ │ ├── cp1253.map │ │ │ ├── cp1254.map │ │ │ ├── cp1255.map │ │ │ ├── cp1257.map │ │ │ ├── cp1258.map │ │ │ ├── cp874.map │ │ │ ├── iso-8859-1.map │ │ │ ├── iso-8859-11.map │ │ │ ├── iso-8859-15.map │ │ │ ├── iso-8859-16.map │ │ │ ├── iso-8859-2.map │ │ │ ├── iso-8859-4.map │ │ │ ├── iso-8859-5.map │ │ │ ├── iso-8859-7.map │ │ │ ├── iso-8859-9.map │ │ │ ├── koi8-r.map │ │ │ ├── koi8-u.map │ │ │ └── makefont.php │ │ ├── pfm2afm │ │ │ ├── pfm2afm.exe │ │ │ └── source │ │ │ │ ├── pfm2afm.c │ │ │ │ └── pfm2afm.h │ │ ├── symbol.php │ │ ├── times.php │ │ ├── timesb.php │ │ ├── timesbi.php │ │ ├── timesi.php │ │ └── zapfdingbats.php │ ├── pdfacourier.php │ ├── pdfacourier.z │ ├── pdfacourierb.php │ ├── pdfacourierb.z │ ├── pdfacourierbi.php │ ├── pdfacourierbi.z │ ├── pdfacourieri.php │ ├── pdfacourieri.z │ ├── pdfahelvetica.php │ ├── pdfahelvetica.z │ ├── pdfahelveticab.php │ ├── pdfahelveticab.z │ ├── pdfahelveticabi.php │ ├── pdfahelveticabi.z │ ├── pdfahelveticai.php │ ├── pdfahelveticai.z │ ├── pdfasymbol.php │ ├── pdfasymbol.z │ ├── pdfatimes.php │ ├── pdfatimes.z │ ├── pdfatimesb.php │ ├── pdfatimesb.z │ ├── pdfatimesbi.php │ ├── pdfatimesbi.z │ ├── pdfatimesi.php │ ├── pdfatimesi.z │ ├── pdfazapfdingbats.php │ ├── pdfazapfdingbats.z │ ├── stsongstdlight.php │ ├── symbol.php │ ├── times.php │ ├── timesb.php │ ├── timesbi.php │ ├── timesi.php │ ├── ttf-bitstream-vera-1.10 │ │ ├── COPYRIGHT.TXT │ │ ├── README.TXT │ │ ├── RELEASENOTES.TXT │ │ └── local.conf │ ├── ttf2ufm │ │ ├── README.TXT │ │ ├── makefontuni.php │ │ ├── ttf2ufm-src.zip │ │ ├── ttf2ufm-src │ │ │ ├── CHANGES │ │ │ ├── CHANGES.html │ │ │ ├── COPYRIGHT │ │ │ ├── FONTS.hpux.html │ │ │ ├── FONTS.html │ │ │ ├── Makefile │ │ │ ├── README.FIRST │ │ │ ├── README.html │ │ │ ├── app │ │ │ │ ├── RPM │ │ │ │ │ └── ttf2pt1.spec.src │ │ │ │ ├── TeX │ │ │ │ │ ├── README.html │ │ │ │ │ ├── cjk-latex-config │ │ │ │ │ ├── cjk-latex-t1mapgen │ │ │ │ │ └── sfd2map │ │ │ │ ├── X11 │ │ │ │ │ ├── README.html │ │ │ │ │ ├── t1-xf86.334.patch │ │ │ │ │ └── t1-xf86.39.patch │ │ │ │ └── netscape │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.html │ │ │ │ │ ├── fontsz.cf │ │ │ │ │ ├── notscape │ │ │ │ │ ├── nsfilter │ │ │ │ │ ├── nsfix.c │ │ │ │ │ ├── nspr │ │ │ │ │ ├── nsprint │ │ │ │ │ └── psfonts.cf │ │ │ ├── bdf.c │ │ │ ├── bitmap.c │ │ │ ├── byteorder.h │ │ │ ├── cygbuild.sh │ │ │ ├── encodings │ │ │ │ ├── README.html │ │ │ │ ├── adobestd │ │ │ │ │ └── adobe-std.tbl │ │ │ │ ├── bulgarian │ │ │ │ │ ├── README │ │ │ │ │ ├── encodings.alias │ │ │ │ │ ├── ibm-1251.tbl │ │ │ │ │ ├── ibm-866.tbl │ │ │ │ │ ├── iso8859-5.tbl │ │ │ │ │ └── koi8-r.tbl │ │ │ │ ├── cyrillic │ │ │ │ │ ├── encodings.alias │ │ │ │ │ ├── ibm-1251.tbl │ │ │ │ │ ├── ibm-866.tbl │ │ │ │ │ ├── iso8859-5.tbl │ │ │ │ │ └── koi8-r.tbl │ │ │ │ ├── latin1 │ │ │ │ │ └── iso8859-1.tbl │ │ │ │ ├── latin2 │ │ │ │ │ └── iso8859-2.tbl │ │ │ │ ├── latin4 │ │ │ │ │ ├── iso8859-4 │ │ │ │ │ └── iso8859-4.tbl │ │ │ │ ├── latin5 │ │ │ │ │ └── iso8859-9 │ │ │ │ └── russian │ │ │ │ │ ├── README │ │ │ │ │ ├── encodings.alias │ │ │ │ │ ├── ibm-1251.tbl │ │ │ │ │ ├── ibm-866.tbl │ │ │ │ │ ├── iso8859-5.tbl │ │ │ │ │ └── koi8-r.tbl │ │ │ ├── ft.c │ │ │ ├── global.h │ │ │ ├── maps │ │ │ │ ├── CP1250.map │ │ │ │ ├── CP1251.map │ │ │ │ ├── T2A_compact.map │ │ │ │ ├── adobe-standard-encoding.map │ │ │ │ ├── cubg5plus.map │ │ │ │ ├── cubig5.map │ │ │ │ ├── cugb.map │ │ │ │ ├── cugbk.map │ │ │ │ ├── ubig5.map │ │ │ │ ├── ugb.map │ │ │ │ ├── ugbk.map │ │ │ │ └── unicode-sample.map │ │ │ ├── other │ │ │ │ ├── Makefile │ │ │ │ ├── README.html │ │ │ │ ├── bmpfont.h │ │ │ │ ├── bz.c │ │ │ │ ├── bzscreen.c │ │ │ │ ├── bzscreen.h │ │ │ │ ├── cmpf.c │ │ │ │ ├── cntstems.pl │ │ │ │ ├── dmpf.c │ │ │ │ ├── lst.pl │ │ │ │ ├── showdf │ │ │ │ └── showg │ │ │ ├── pt1.c │ │ │ ├── pt1.h │ │ │ ├── runt1asm.c │ │ │ ├── scripts │ │ │ │ ├── convert │ │ │ │ ├── convert.cfg.sample │ │ │ │ ├── forceiso │ │ │ │ ├── frommap │ │ │ │ ├── html2man │ │ │ │ ├── inst_dir │ │ │ │ ├── inst_file │ │ │ │ ├── mkrel │ │ │ │ ├── t1fdir │ │ │ │ ├── trans │ │ │ │ ├── unhtml │ │ │ │ └── x2gs │ │ │ ├── t1asm │ │ │ ├── t1asm.c │ │ │ ├── ttf.c │ │ │ ├── ttf.h │ │ │ ├── ttf2pt1.1 │ │ │ ├── ttf2pt1.c │ │ │ ├── ttf2pt1_convert.1 │ │ │ ├── ttf2pt1_x2gs.1 │ │ │ ├── ttf2ufm │ │ │ ├── version.h │ │ │ ├── winbuild.bat │ │ │ └── windows.h │ │ └── ttf2ufm.exe │ ├── uni2cid_ac15.php │ ├── uni2cid_ag15.php │ ├── uni2cid_aj16.php │ ├── uni2cid_ak12.php │ ├── utils │ │ ├── README.TXT │ │ ├── enc │ │ │ ├── cp1250.map │ │ │ ├── cp1251.map │ │ │ ├── cp1252.map │ │ │ ├── cp1253.map │ │ │ ├── cp1254.map │ │ │ ├── cp1255.map │ │ │ ├── cp1257.map │ │ │ ├── cp1258.map │ │ │ ├── cp874.map │ │ │ ├── iso-8859-1.map │ │ │ ├── iso-8859-11.map │ │ │ ├── iso-8859-15.map │ │ │ ├── iso-8859-16.map │ │ │ ├── iso-8859-2.map │ │ │ ├── iso-8859-4.map │ │ │ ├── iso-8859-5.map │ │ │ ├── iso-8859-7.map │ │ │ ├── iso-8859-9.map │ │ │ ├── koi8-r.map │ │ │ └── koi8-u.map │ │ ├── freetype6.dll │ │ ├── makeallttffonts.php │ │ ├── makefont.php │ │ ├── pfm2afm │ │ ├── pfm2afm.exe │ │ ├── src │ │ │ ├── pfm2afm-src.tar.gz │ │ │ ├── pfm2afm-src.zip │ │ │ ├── readme.txt │ │ │ ├── ttf2ufm-src.tar.gz │ │ │ └── ttf2ufm-src.zip │ │ ├── ttf2ufm │ │ ├── ttf2ufm.exe │ │ └── zlib1.dll │ ├── vera.ctg.z │ ├── vera.php │ ├── vera.z │ ├── verab.ctg.z │ ├── verab.php │ ├── verab.z │ ├── verabi.ctg.z │ ├── verabi.php │ ├── verabi.z │ ├── verai.ctg.z │ ├── verai.php │ ├── verai.z │ ├── veramo.ctg.z │ ├── veramo.php │ ├── veramo.z │ ├── veramob.ctg.z │ ├── veramob.php │ ├── veramob.z │ ├── veramobi.ctg.z │ ├── veramobi.php │ ├── veramobi.z │ ├── veramoi.ctg.z │ ├── veramoi.php │ ├── veramoi.z │ ├── verase.ctg.z │ ├── verase.php │ ├── verase.z │ ├── veraseb.ctg.z │ ├── veraseb.php │ ├── veraseb.z │ ├── zapfdingbats.php │ └── zarbold.php │ ├── include │ ├── barcodes │ │ ├── datamatrix.php │ │ ├── pdf417.php │ │ └── qrcode.php │ ├── sRGB.icc │ ├── tcpdf_colors.php │ ├── tcpdf_filters.php │ ├── tcpdf_font_data.php │ ├── tcpdf_fonts.php │ ├── tcpdf_images.php │ └── tcpdf_static.php │ ├── tcpdf.php │ ├── tcpdf_autoconfig.php │ ├── tcpdf_barcodes_1d.php │ ├── tcpdf_barcodes_2d.php │ ├── tcpdf_import.php │ ├── tcpdf_parser.php │ └── tools │ ├── .htaccess │ ├── convert_fonts_examples.txt │ └── tcpdf_addfont.php ├── license ├── License_linux.txt └── License_windows.txt ├── log4php.properties ├── logs ├── .htaccess └── todel.txt.txt ├── migrate ├── index.php └── resources │ ├── bootstrap │ ├── css │ │ └── bootstrap.min.css │ └── js │ │ └── bootstrap.min.js │ ├── css │ ├── check_radio_sprite.png │ ├── mkCheckbox.css │ └── style.css │ ├── images │ ├── help40.png │ ├── migration_screen.png │ ├── no.png │ ├── vt1.png │ ├── wizard_screen.png │ └── yes.png │ └── js │ └── jquery-min.js ├── modules ├── Accounts │ ├── Accounts.php │ ├── actions │ │ ├── CheckDuplicate.php │ │ ├── ExportOverviewActivities.php │ │ ├── Save.php │ │ └── TransferOwnership.php │ ├── models │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ └── Record.php │ └── views │ │ ├── AccountHierarchy.php │ │ └── Detail.php ├── Calendar │ ├── Activity.php │ ├── Appointment.php │ ├── Calendar.php │ ├── CalendarCommon.php │ ├── Date.php │ ├── RenderRelatedListUI.php │ ├── RepeatEvents.php │ ├── SendReminder.bat │ ├── actions │ │ ├── ActivityReminder.php │ │ ├── CalendarUserActions.php │ │ ├── DragDropAjax.php │ │ ├── ExportData.php │ │ ├── Feed.php │ │ ├── Save.php │ │ ├── SaveAjax.php │ │ └── SaveFollowupAjax.php │ ├── iCal │ │ ├── iCalendar_components.php │ │ ├── iCalendar_parameters.php │ │ ├── iCalendar_properties.php │ │ ├── iCalendar_rfc2445.php │ │ └── ical-parser-class.php │ ├── iCalExport.php │ ├── iCalImport.php │ ├── iCalLastImport.php │ ├── models │ │ ├── DetailRecordStructure.php │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── Field.php │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php │ ├── uitypes │ │ ├── Datetime.php │ │ ├── Multireference.php │ │ ├── Picklist.php │ │ └── Time.php │ └── views │ │ ├── Calendar.php │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── Export.php │ │ ├── Import.php │ │ ├── QuickCreateAjax.php │ │ ├── QuickCreateFollowupAjax.php │ │ ├── SharedCalendar.php │ │ └── ViewTypes.php ├── Campaigns │ ├── Campaigns.php │ ├── actions │ │ ├── DetailAjax.php │ │ └── RelationAjax.php │ ├── models │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── Module.php │ │ ├── Record.php │ │ ├── Relation.php │ │ └── RelationListView.php │ └── views │ │ ├── Detail.php │ │ └── RelatedList.php ├── Contacts │ ├── Contacts.php │ ├── ContactsHandler.php │ ├── actions │ │ ├── RelationAjax.php │ │ ├── Save.php │ │ ├── SaveAjax.php │ │ ├── TransferOwnership.php │ │ └── getvCard.php │ ├── contactSeedData.php │ ├── imgs │ │ ├── 2tbarPrivateChat.gif │ │ ├── 2tbarPublicChat.gif │ │ ├── box_BL.gif │ │ ├── box_BR.gif │ │ ├── box_M.gif │ │ ├── box_ML.gif │ │ ├── box_MR.gif │ │ ├── box_T.gif │ │ ├── box_TL.gif │ │ ├── box_TR.gif │ │ ├── btn_close.gif │ │ ├── btn_hide.gif │ │ ├── btn_send.gif │ │ ├── bx_B.gif │ │ ├── close.gif │ │ ├── hide.gif │ │ ├── icone_chat.gif │ │ ├── icone_keyb.gif │ │ ├── site_bg.gif │ │ └── user_icon.gif │ ├── models │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── Module.php │ │ ├── Record.php │ │ └── RelationListView.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ └── QuickCreateAjax.php ├── CustomView │ ├── CustomView.php │ ├── ListViewTop.php │ ├── PopulateCustomView.php │ ├── actions │ │ ├── Approve.php │ │ ├── Delete.php │ │ ├── DeleteAjax.php │ │ ├── Deny.php │ │ └── Save.php │ ├── models │ │ └── Record.php │ └── views │ │ └── EditAjax.php ├── Documents │ ├── Documents.php │ ├── actions │ │ ├── CheckFileIntegrity.php │ │ ├── DownloadFile.php │ │ ├── Folder.php │ │ └── MoveDocuments.php │ ├── models │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── Field.php │ │ ├── Folder.php │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php │ ├── uitypes │ │ └── Text.php │ └── views │ │ ├── AddFolder.php │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── List.php │ │ ├── ListAjax.php │ │ └── MoveDocuments.php ├── Emails │ ├── Emails.php │ ├── PHPMailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── get_oauth_token.php │ │ ├── language │ │ │ ├── phpmailer.lang-af.php │ │ │ ├── phpmailer.lang-am.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-ba.php │ │ │ ├── phpmailer.lang-be.php │ │ │ ├── phpmailer.lang-bg.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cs.php │ │ │ ├── phpmailer.lang-da.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-el.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hi.php │ │ │ ├── phpmailer.lang-hr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-id.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-ka.php │ │ │ ├── phpmailer.lang-ko.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-mg.php │ │ │ ├── phpmailer.lang-ms.php │ │ │ ├── phpmailer.lang-nb.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-pt.php │ │ │ ├── phpmailer.lang-pt_br.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.php │ │ │ ├── phpmailer.lang-sr.php │ │ │ ├── phpmailer.lang-sv.php │ │ │ ├── phpmailer.lang-tl.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-vi.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ └── src │ │ │ ├── Exception.php │ │ │ ├── OAuth.php │ │ │ ├── PHPMailer.php │ │ │ ├── POP3.php │ │ │ └── SMTP.php │ ├── actions │ │ ├── BasicAjax.php │ │ ├── CheckServerInfo.php │ │ ├── DownloadFile.php │ │ └── TrackAccess.php │ ├── class.phpmailer.php │ ├── class.smtp.php │ ├── mail.php │ ├── models │ │ ├── Mailer.php │ │ ├── Module.php │ │ └── Record.php │ └── views │ │ ├── InRelation.php │ │ ├── List.php │ │ ├── MassSaveAjax.php │ │ └── showEmailContent.php ├── Events │ ├── actions │ │ └── Save.php │ ├── models │ │ ├── DetailRecordStructure.php │ │ ├── EditRecordStructure.php │ │ ├── Field.php │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php │ ├── uitypes │ │ ├── Datetime.php │ │ ├── Multireference.php │ │ └── Time.php │ └── views │ │ ├── Calendar.php │ │ ├── Detail.php │ │ ├── Edit.php │ │ └── SharedCalendar.php ├── Faq │ ├── Faq.php │ ├── models │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php │ └── views │ │ └── Edit.php ├── HelpDesk │ ├── HelpDesk.php │ ├── HelpDeskHandler.php │ ├── actions │ │ └── ConvertFAQ.php │ ├── dashboards │ │ ├── OpenTickets.php │ │ └── TicketsByStatus.php │ ├── models │ │ ├── DashBoard.php │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php │ └── views │ │ └── Detail.php ├── Home │ ├── js │ │ └── HelpMeNow.js │ ├── models │ │ ├── Module.php │ │ └── Widget.php │ └── views │ │ ├── DashBoard.php │ │ └── Index.php ├── Install │ ├── actions │ │ └── ajaxInitDB.php │ ├── models │ │ ├── ConfigFileUtils.php │ │ ├── InitSchema.php │ │ └── Utils.php │ └── views │ │ └── Index.php ├── Inventory │ ├── actions │ │ ├── ExportPDF.php │ │ ├── GetTaxes.php │ │ ├── MassSave.php │ │ ├── Save.php │ │ ├── SaveAjax.php │ │ └── savePDF.php │ ├── models │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ ├── Record.php │ │ └── RelationListView.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── List.php │ │ ├── Popup.php │ │ ├── ProductsPopup.php │ │ ├── ProductsPopupAjax.php │ │ ├── SendEmail.php │ │ ├── ServicesPopup.php │ │ ├── ServicesPopupAjax.php │ │ ├── SubProductsPopup.php │ │ └── SubProductsPopupAjax.php ├── Invoice │ ├── CreatePDF.php │ ├── Invoice.php │ ├── InvoiceHandler.php │ ├── InvoicePDFController.php │ ├── actions │ │ ├── ExportPDF.php │ │ ├── MassExportPDF.php │ │ ├── MassSave.php │ │ ├── Save.php │ │ └── SaveAjax.php │ ├── language │ │ ├── de_de.lang.pdf.php │ │ └── en_us.lang.pdf.php │ ├── models │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ ├── Record.php │ │ └── RelationListView.php │ ├── pdf_templates │ │ ├── body.php │ │ ├── footer.php │ │ └── header.php │ ├── pdfcreator.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── List.php │ │ ├── Popup.php │ │ ├── ProductsPopup.php │ │ ├── ProductsPopupAjax.php │ │ ├── SendEmail.php │ │ ├── ServicesPopup.php │ │ ├── ServicesPopupAjax.php │ │ ├── SubProductsPopup.php │ │ └── SubProductsPopupAjax.php ├── Leads │ ├── Leads.php │ ├── actions │ │ ├── Save.php │ │ ├── TransferOwnership.php │ │ └── getvCard.php │ ├── dashboards │ │ ├── LeadsByIndustry.php │ │ ├── LeadsBySource.php │ │ ├── LeadsByStatus.php │ │ └── LeadsCreated.php │ ├── models │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php │ └── views │ │ ├── ConvertLead.php │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── QuickCreateAjax.php │ │ └── SaveConvertLead.php ├── Migration │ ├── models │ │ └── Module.php │ ├── schema │ │ ├── 530_to_540rc.php │ │ ├── 540_to_600RC.php │ │ ├── 540rc_to_540.php │ │ ├── 600RC_to_600.php │ │ ├── 600_to_610.php │ │ ├── 610_to_620.php │ │ ├── 620_to_630.php │ │ ├── 630_to_640.php │ │ ├── 640_to_650.php │ │ └── CONVENTION.md │ └── views │ │ └── Index.php ├── PickList │ ├── DependentPickListUtils.php │ └── PickListUtils.php ├── Portal │ ├── actions │ │ ├── DeleteAjax.php │ │ ├── MassDelete.php │ │ └── SaveAjax.php │ ├── models │ │ ├── ListView.php │ │ └── Module.php │ └── views │ │ ├── Detail.php │ │ ├── EditAjax.php │ │ └── List.php ├── Potentials │ ├── Potentials.php │ ├── actions │ │ ├── Save.php │ │ └── SaveAjax.php │ ├── dashboards │ │ ├── Forecast.php │ │ ├── FunnelAmount.php │ │ ├── GroupedBySalesPerson.php │ │ ├── GroupedBySalesStage.php │ │ ├── PipelinedAmountPerSalesPerson.php │ │ ├── TopPotentials.php │ │ └── TotalRevenuePerSalesPerson.php │ ├── models │ │ ├── DashBoard.php │ │ ├── DetailView.php │ │ ├── Module.php │ │ └── Record.php │ └── views │ │ └── Detail.php ├── PriceBooks │ ├── PriceBooks.php │ ├── actions │ │ ├── ProductListPrice.php │ │ ├── RelationAjax.php │ │ ├── Save.php │ │ └── SaveAjax.php │ ├── models │ │ ├── ListView.php │ │ ├── Module.php │ │ ├── Record.php │ │ ├── Relation.php │ │ └── RelationListView.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── ListPriceUpdate.php │ │ ├── Popup.php │ │ ├── PopupAjax.php │ │ ├── ProductPriceBookPopup.php │ │ ├── ProductPriceBookPopupAjax.php │ │ └── QuickCreateAjax.php ├── Products │ ├── Products.php │ ├── actions │ │ ├── RelationAjax.php │ │ ├── Save.php │ │ ├── SaveAjax.php │ │ └── SubProducts.php │ ├── models │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ ├── Record.php │ │ ├── Relation.php │ │ └── RelationListView.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── MoreCurrenciesList.php │ │ ├── PriceBookProductPopup.php │ │ ├── PriceBookProductPopupAjax.php │ │ └── QuickCreateAjax.php ├── ProjectTask │ └── models │ │ └── Module.php ├── PurchaseOrder │ ├── PurchaseOrder.php │ ├── PurchaseOrderHandler.php │ ├── PurchaseOrderPDFController.php │ ├── actions │ │ ├── CompanyDetails.php │ │ ├── ExportPDF.php │ │ ├── MassSave.php │ │ ├── Save.php │ │ └── SaveAjax.php │ ├── language │ │ ├── de_de.lang.pdf.php │ │ └── en_us.lang.pdf.php │ ├── models │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ ├── Record.php │ │ └── RelationListView.php │ ├── pdf_templates │ │ ├── body.php │ │ ├── footer.php │ │ └── header.php │ ├── pdfcreator.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── List.php │ │ ├── Popup.php │ │ ├── ProductsPopup.php │ │ ├── ProductsPopupAjax.php │ │ ├── SendEmail.php │ │ ├── ServicesPopup.php │ │ ├── ServicesPopupAjax.php │ │ ├── SubProductsPopup.php │ │ └── SubProductsPopupAjax.php ├── Quotes │ ├── CreatePDF.php │ ├── QuotePDFController.php │ ├── Quotes.php │ ├── actions │ │ ├── ExportPDF.php │ │ ├── MassSave.php │ │ └── Save.php │ ├── language │ │ ├── de_de.lang.pdf.php │ │ └── en_us.lang.pdf.php │ ├── models │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ ├── Record.php │ │ └── RelationListView.php │ ├── pdf_templates │ │ ├── body.php │ │ ├── footer.php │ │ └── header.php │ ├── pdfcreator.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── List.php │ │ ├── ProductsPopup.php │ │ ├── ProductsPopupAjax.php │ │ ├── SendEmail.php │ │ ├── ServicesPopup.php │ │ ├── ServicesPopupAjax.php │ │ ├── SubProductsPopup.php │ │ └── SubProductsPopupAjax.php ├── Reports │ ├── AdvancedFilter.php │ ├── CustomReportUtils.php_deprecated │ ├── PopulateReports.php │ ├── ReportChartRun.php_deprecated │ ├── ReportRun.php │ ├── ReportSharing.php │ ├── ReportType.php │ ├── ReportUtils.php │ ├── Reports.php │ ├── ScheduledReports.php │ ├── actions │ │ ├── ChartSave.php │ │ ├── CheckDuplicate.php │ │ ├── DeleteAjax.php │ │ ├── DetailAjax.php │ │ ├── Folder.php │ │ ├── MassDelete.php │ │ ├── MoveReports.php │ │ ├── Save.php │ │ ├── addContactsOrLeadsfromReportstoCampaign.php │ │ ├── addContactsOrLeadsfromReportstoCleverReach.php │ │ ├── addContactsOrLeadsfromReportstoMailchimp.php │ │ ├── addContactsfromReportstoVerteiler.php │ │ └── resetReportsCron.php │ ├── models │ │ ├── Chart.php │ │ ├── DetailView.php │ │ ├── Folder.php │ │ ├── ListView.php │ │ ├── Module.php │ │ ├── Record.php │ │ ├── RecordStructure.php │ │ ├── Report.php │ │ └── ScheduleReports.php │ └── views │ │ ├── ChartDetail.php │ │ ├── ChartEdit.php │ │ ├── ChartSaveAjax.php │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── EditFolder.php │ │ ├── ExportReport.php │ │ ├── IndexAjax.php │ │ ├── List.php │ │ ├── ListAjax.php │ │ ├── MoveReports.php │ │ ├── SaveAjax.php │ │ ├── showCampaignList.php │ │ ├── showCleverReachList.php │ │ ├── showHubSpotList.php │ │ ├── showMailChimpList.php │ │ └── showVerteilerList.php ├── Rss │ ├── actions │ │ ├── DeleteAjax.php │ │ ├── GetHtml.php │ │ ├── MakeDefaultAjax.php │ │ └── Save.php │ ├── models │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php │ └── views │ │ ├── List.php │ │ └── ViewTypes.php ├── SalesOrder │ ├── RecurringInvoiceHandler.php │ ├── SalesOrder.php │ ├── SalesOrderPDFController.php │ ├── SalesOrderPDFHeaderViewer.php │ ├── actions │ │ ├── ExportPDF.php │ │ ├── MassSave.php │ │ ├── Save.php │ │ └── SaveAjax.php │ ├── language │ │ ├── de_de.lang.pdf.php │ │ └── en_us.lang.pdf.php │ ├── models │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ ├── Record.php │ │ └── RelationListView.php │ ├── pdf_templates │ │ ├── body.php │ │ ├── footer.php │ │ └── header.php │ ├── pdfcreator.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── List.php │ │ ├── ProductsPopup.php │ │ ├── ProductsPopupAjax.php │ │ ├── SendEmail.php │ │ ├── ServicesPopup.php │ │ ├── ServicesPopupAjax.php │ │ ├── SubProductsPopup.php │ │ └── SubProductsPopupAjax.php ├── Services │ ├── Services.php │ ├── actions │ │ ├── MassSave.php │ │ ├── RelationAjax.php │ │ └── SaveAjax.php │ ├── models │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Module.php │ │ ├── Record.php │ │ ├── Relation.php │ │ └── RelationListView.php │ └── views │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── List.php │ │ ├── MoreCurrenciesList.php │ │ ├── PriceBookProductPopup.php │ │ ├── PriceBookProductPopupAjax.php │ │ └── QuickCreateAjax.php ├── Settings │ ├── CronTasks │ │ ├── actions │ │ │ ├── SaveAjax.php │ │ │ └── UpdateSequence.php │ │ ├── models │ │ │ ├── Module.php │ │ │ └── Record.php │ │ └── views │ │ │ ├── EditAjax.php │ │ │ └── List.php │ ├── Currency │ │ ├── actions │ │ │ ├── DeleteAjax.php │ │ │ └── SaveAjax.php │ │ ├── models │ │ │ ├── ListView.php │ │ │ ├── Module.php │ │ │ └── Record.php │ │ └── views │ │ │ ├── EditAjax.php │ │ │ └── TransformEditAjax.php │ ├── CustomerPortal │ │ ├── actions │ │ │ └── Save.php │ │ ├── models │ │ │ └── Module.php │ │ └── views │ │ │ └── Index.php │ ├── Groups │ │ ├── actions │ │ │ ├── DeleteAjax.php │ │ │ ├── EditAjax.php │ │ │ └── Save.php │ │ ├── models │ │ │ ├── Member.php │ │ │ ├── Module.php │ │ │ └── Record.php │ │ └── views │ │ │ ├── DeleteAjax.php │ │ │ ├── Detail.php │ │ │ └── Edit.php │ ├── LayoutEditor │ │ ├── actions │ │ │ ├── Block.php │ │ │ ├── Field.php │ │ │ └── Relation.php │ │ ├── models │ │ │ ├── Block.php │ │ │ ├── Field.php │ │ │ └── Module.php │ │ └── views │ │ │ ├── Index.php │ │ │ └── IndexAjax.php │ ├── Leads │ │ ├── actions │ │ │ ├── MappingDelete.php │ │ │ └── MappingSave.php │ │ ├── models │ │ │ ├── Field.php │ │ │ ├── Mapping.php │ │ │ └── Module.php │ │ └── views │ │ │ ├── MappingDetail.php │ │ │ └── MappingEdit.php │ ├── LoginHistory │ │ ├── actions │ │ │ ├── DownloadFile.php │ │ │ ├── ListAjax.php │ │ │ └── exportLoginHistory.php │ │ ├── models │ │ │ ├── ListView.php │ │ │ ├── Module.php │ │ │ └── Record.php │ │ └── views │ │ │ └── List.php │ ├── MailConverter │ │ ├── actions │ │ │ ├── CheckMailBoxMaxLimit.php │ │ │ ├── DeleteMailBox.php │ │ │ ├── DeleteRule.php │ │ │ ├── SaveFolders.php │ │ │ ├── SaveMailBox.php │ │ │ ├── SaveRule.php │ │ │ ├── ScanNow.php │ │ │ └── UpdateSequence.php │ │ ├── handlers │ │ │ ├── MailAttachmentMIME.php │ │ │ ├── MailBox.php │ │ │ ├── MailRecord.php │ │ │ ├── MailScanner.php │ │ │ ├── MailScannerAction.php │ │ │ ├── MailScannerInfo.php │ │ │ └── MailScannerRule.php │ │ ├── models │ │ │ ├── Field.php │ │ │ ├── Module.php │ │ │ ├── Record.php │ │ │ ├── RuleField.php │ │ │ └── RuleRecord.php │ │ └── views │ │ │ ├── Edit.php │ │ │ ├── EditRule.php │ │ │ ├── List.php │ │ │ └── RuleAjax.php │ ├── MenuEditor │ │ ├── actions │ │ │ └── Save.php │ │ ├── models │ │ │ └── Module.php │ │ └── views │ │ │ └── Index.php │ ├── ModuleManager │ │ ├── actions │ │ │ ├── Basic.php │ │ │ └── ModuleExport.php │ │ ├── models │ │ │ ├── Extension.php │ │ │ └── Module.php │ │ └── views │ │ │ ├── Index.php │ │ │ ├── List.php │ │ │ └── ModuleImport.php │ ├── PickListDependency │ │ ├── actions │ │ │ ├── DeleteAjax.php │ │ │ ├── Index.php │ │ │ └── SaveAjax.php │ │ ├── models │ │ │ ├── ListView.php │ │ │ ├── Module.php │ │ │ └── Record.php │ │ └── views │ │ │ ├── AddDependency.php │ │ │ ├── Edit.php │ │ │ ├── IndexAjax.php │ │ │ └── List.php │ ├── Picklist │ │ ├── actions │ │ │ └── SaveAjax.php │ │ ├── handlers │ │ │ └── PickListHandler.php │ │ ├── models │ │ │ ├── Field.php │ │ │ └── Module.php │ │ └── views │ │ │ ├── Index.php │ │ │ └── IndexAjax.php │ ├── Profiles │ │ ├── actions │ │ │ ├── Delete.php │ │ │ ├── EditAjax.php │ │ │ └── Save.php │ │ ├── models │ │ │ ├── ListView.php │ │ │ ├── Module.php │ │ │ └── Record.php │ │ └── views │ │ │ ├── DeleteAjax.php │ │ │ ├── Detail.php │ │ │ ├── Edit.php │ │ │ ├── EditAjax.php │ │ │ └── IndexAjax.php │ ├── Roles │ │ ├── actions │ │ │ ├── Delete.php │ │ │ ├── EditAjax.php │ │ │ ├── MoveAjax.php │ │ │ └── Save.php │ │ ├── models │ │ │ ├── Module.php │ │ │ └── Record.php │ │ └── views │ │ │ ├── DeleteAjax.php │ │ │ ├── Edit.php │ │ │ ├── EditAjax.php │ │ │ ├── Index.php │ │ │ ├── IndexAjax.php │ │ │ └── Popup.php │ ├── SharingAccess │ │ ├── actions │ │ │ ├── IndexAjax.php │ │ │ └── SaveAjax.php │ │ ├── models │ │ │ ├── Action.php │ │ │ ├── Module.php │ │ │ ├── Rule.php │ │ │ └── RuleMember.php │ │ └── views │ │ │ ├── Index.php │ │ │ └── IndexAjax.php │ ├── Vtiger │ │ ├── actions │ │ │ ├── AnnouncementSaveAjax.php │ │ │ ├── Basic.php │ │ │ ├── CompanyDetailsSave.php │ │ │ ├── CompanyDetailsSaveLogo.php │ │ │ ├── ConfigEditorSaveAjax.php │ │ │ ├── CustomRecordNumberingAjax.php │ │ │ ├── Index.php │ │ │ ├── ListAjax.php │ │ │ ├── MassDeletePdfTemplates.php │ │ │ ├── OutgoingServerSaveAjax.php │ │ │ ├── TaxAjax.php │ │ │ ├── TermsAndConditionsSaveAjax.php │ │ │ ├── UpdateCompanyLogo.php │ │ │ ├── deletepdftexttemplate.php │ │ │ └── savepdftexttemplate.php │ │ ├── models │ │ │ ├── Announcement.php │ │ │ ├── CompanyDetails.php │ │ │ ├── ConfigModule.php │ │ │ ├── CustomRecordNumberingModule.php │ │ │ ├── ListView.php │ │ │ ├── Menu.php │ │ │ ├── MenuItem.php │ │ │ ├── Module.php │ │ │ ├── OutgoingServer.php │ │ │ ├── Record.php │ │ │ ├── Systems.php │ │ │ ├── TaxRecord.php │ │ │ ├── TermsAndConditions.php │ │ │ └── listpdftexttemplates.php │ │ └── views │ │ │ ├── AnnouncementEdit.php │ │ │ ├── CompanyDetails.php │ │ │ ├── CompanyDetailsEdit.php │ │ │ ├── ConfigEditorDetail.php │ │ │ ├── ConfigEditorEdit.php │ │ │ ├── CustomRecordNumbering.php │ │ │ ├── Index.php │ │ │ ├── IndexAjax.php │ │ │ ├── List.php │ │ │ ├── ListAjax.php │ │ │ ├── ListMenu.php │ │ │ ├── ListUI5.php │ │ │ ├── OutgoingServerDetail.php │ │ │ ├── OutgoingServerEdit.php │ │ │ ├── TaxAjax.php │ │ │ ├── TaxIndex.php │ │ │ ├── TermsAndConditionsEdit.php │ │ │ ├── UI5Embed.php │ │ │ ├── createpdfstexttemplate.php │ │ │ └── listpdftexttemplates.php │ ├── Workflows │ │ ├── actions │ │ │ ├── DeleteAjax.php │ │ │ ├── Save.php │ │ │ └── TaskAjax.php │ │ ├── models │ │ │ ├── EditTaskRecordStructure.php │ │ │ ├── Field.php │ │ │ ├── FilterRecordStructure.php │ │ │ ├── ListView.php │ │ │ ├── Module.php │ │ │ ├── Record.php │ │ │ ├── RecordStructure.php │ │ │ ├── TaskRecord.php │ │ │ └── TaskType.php │ │ └── views │ │ │ ├── CreateEntity.php │ │ │ ├── Edit.php │ │ │ ├── EditTask.php │ │ │ ├── List.php │ │ │ └── TasksList.php │ └── vtigerCRM.CAB ├── Users │ ├── Authenticate.php │ ├── CreateUserPrivilegeFile.php │ ├── DefaultDataPopulator.php │ ├── UserTimeZonesArray.php │ ├── Users.php │ ├── actions │ │ ├── BasicAjax.php │ │ ├── DeleteAjax.php │ │ ├── DeleteImage.php │ │ ├── ExportData.php │ │ ├── ForgotPassword.php │ │ ├── IndexAjax.php │ │ ├── ListAjax.php │ │ ├── Login.php │ │ ├── Logout.php │ │ ├── RequestPassword.php │ │ ├── Save.php │ │ ├── SaveAjax.php │ │ ├── SaveCalendarSettings.php │ │ ├── SystemSetupSave.php │ │ └── UserSetupSave.php │ ├── handlers │ │ └── ForgotPassword.php │ ├── models │ │ ├── DetailRecordStructure.php │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── Field.php │ │ ├── ListView.php │ │ ├── Module.php │ │ ├── Privileges.php │ │ ├── QuickCreateRecordStructure.php │ │ ├── Record.php │ │ └── RecordStructure.php │ └── views │ │ ├── ChangePassword.php │ │ ├── DeleteAjax.php │ │ ├── DeleteUser.php │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── EditAjax.php │ │ ├── Index.php │ │ ├── List.php │ │ ├── ListAjax.php │ │ ├── Login.php │ │ ├── PreferenceDetail.php │ │ ├── PreferenceEdit.php │ │ ├── QuickCreateAjax.php │ │ ├── SystemSetup.php │ │ ├── TransferOwner.php │ │ └── UserSetup.php ├── Utilities │ ├── Currencies.php │ ├── Merge.php │ └── UtilitiesAjax.php ├── Vendors │ ├── Vendors.php │ └── models │ │ ├── DetailView.php │ │ ├── ListView.php │ │ ├── Module.php │ │ └── Record.php ├── Vtiger │ ├── CRMEntity.php │ ├── RecordLabelUpdater.php │ ├── actions │ │ ├── BasicAjax.php │ │ ├── Delete.php │ │ ├── DeleteAjax.php │ │ ├── DeleteImage.php │ │ ├── EditLocksAjax.php │ │ ├── ExportData.php │ │ ├── GetData.php │ │ ├── Mass.php │ │ ├── MassDelete.php │ │ ├── MassSave.php │ │ ├── NoteBook.php │ │ ├── ProcessDuplicates.php │ │ ├── RelationAjax.php │ │ ├── RemoveWidget.php │ │ ├── Save.php │ │ ├── SaveAjax.php │ │ ├── SaveWidgetPositions.php │ │ └── TagCloud.php │ ├── dashboards │ │ ├── CalendarActivities.php │ │ ├── History.php │ │ ├── KeyMetrics.php │ │ ├── MiniList.php │ │ ├── Notebook.php │ │ ├── OverdueActivities.php │ │ └── TagCloud.php │ ├── handlers │ │ └── RecordLabelUpdater.php │ ├── helpers │ │ ├── ShortURL.php │ │ └── Util.php │ ├── layout_utils.php │ ├── models │ │ ├── Action.php │ │ ├── Block.php │ │ ├── CompanyDetails.php │ │ ├── CssScript.php │ │ ├── DashBoard.php │ │ ├── DetailRecordStructure.php │ │ ├── DetailView.php │ │ ├── EditRecordStructure.php │ │ ├── EditView.php │ │ ├── Field.php │ │ ├── FindDuplicate.php │ │ ├── Image.php │ │ ├── JsScript.php │ │ ├── Link.php │ │ ├── ListView.php │ │ ├── MassEditRecordStructure.php │ │ ├── Menu.php │ │ ├── MenuStructure.php │ │ ├── MiniList.php │ │ ├── Module.php │ │ ├── ModuleMeta.php │ │ ├── Notebook.php │ │ ├── Paging.php │ │ ├── QuickCreateRecordStructure.php │ │ ├── Record.php │ │ ├── RecordStructure.php │ │ ├── Relation.php │ │ ├── RelationListView.php │ │ ├── SummaryRecordStructure.php │ │ ├── Tag.php │ │ ├── TooltipView.php │ │ ├── TrackRecord.php │ │ ├── Utility.php │ │ └── Widget.php │ ├── resources │ │ ├── BaseList.js │ │ ├── Field.js │ │ └── validator │ │ │ ├── BaseValidator.js │ │ │ ├── EmailValidator.js │ │ │ ├── FieldValidator.js │ │ │ ├── NumberValidator.js │ │ │ └── PhoneValidator.js │ ├── uitypes │ │ ├── Autocompletedsingleuse.php │ │ ├── Autocompletedtext.php │ │ ├── Base.php │ │ ├── Boolean.php │ │ ├── Currency.php │ │ ├── CurrencyList.php │ │ ├── Date.php │ │ ├── Datetime.php │ │ ├── DocumentsFileUpload.php │ │ ├── DocumentsFolder.php │ │ ├── Double.php │ │ ├── Email.php │ │ ├── FileLocationType.php │ │ ├── Image.php │ │ ├── Integer.php │ │ ├── Multiowner.php │ │ ├── Multipicklist.php │ │ ├── Owner.php │ │ ├── Password.php │ │ ├── Percentage.php │ │ ├── Phone.php │ │ ├── Picklist.php │ │ ├── ProductTax.php │ │ ├── Recurrence.php │ │ ├── Reference.php │ │ ├── Reminder.php │ │ ├── Text.php │ │ ├── Theme.php │ │ ├── Time.php │ │ ├── Url.php │ │ ├── UserPicklist.php │ │ ├── UserReference.php │ │ └── UserRole.php │ └── views │ │ ├── AddNotePad.php │ │ ├── Basic.php │ │ ├── BasicAjax.php │ │ ├── ComposeEmail.php │ │ ├── DashBoard.php │ │ ├── Detail.php │ │ ├── Edit.php │ │ ├── EmailsRelatedModulePopup.php │ │ ├── EmailsRelatedModulePopupAjax.php │ │ ├── Export.php │ │ ├── FindDuplicates.php │ │ ├── FindDuplicatesAjax.php │ │ ├── Footer.php │ │ ├── Header.php │ │ ├── Import.php │ │ ├── Index.php │ │ ├── IndexAjax.php │ │ ├── List.php │ │ ├── ListAjax.php │ │ ├── MassActionAjax.php │ │ ├── MergeRecord.php │ │ ├── MiniListWizard.php │ │ ├── Popup.php │ │ ├── PopupAjax.php │ │ ├── QuickCreateAjax.php │ │ ├── RelatedList.php │ │ ├── ShowTagCloud.php │ │ ├── ShowWidget.php │ │ ├── TagCloudSearchAjax.php │ │ ├── TooltipAjax.php │ │ └── UI5Embed.php └── com_vtiger_workflow │ ├── VTConditionalExpression.inc │ ├── VTEmailRecipientsTemplate.inc │ ├── VTEntityCache.inc │ ├── VTEntityMethodManager.inc │ ├── VTEventHandler.inc │ ├── VTJsonCondition.inc │ ├── VTSimpleTemplate.inc │ ├── VTTaskManager.inc │ ├── VTTaskQueue.inc │ ├── VTWorkflowApplication.inc │ ├── VTWorkflowManager.inc │ ├── VTWorkflowTemplateManager.inc │ ├── VTWorkflowUtils.php │ ├── WorkFlowScheduler.php │ ├── WorkflowComponents.php │ ├── WorkflowScheduler.inc │ ├── config.inc │ ├── edittask.php │ ├── expression_engine │ ├── VTExpressionEvaluater.inc │ ├── VTExpressionsManager.inc │ ├── VTParser.inc │ ├── VTTokenizer.inc │ └── include.inc │ ├── include.inc │ ├── include_webservices.php │ └── tasks │ ├── VTCreateEntityTask.inc │ ├── VTCreateEventTask.inc │ ├── VTCreateTodoTask.inc │ ├── VTDummyTask.inc │ ├── VTEmailTask.inc │ ├── VTEntityMethodTask.inc │ ├── VTSMSTask.inc │ ├── VTSendNotificationTask.inc │ └── VTUpdateFieldsTask.inc ├── nexmoWebhookEndpoint.php ├── packages └── vtiger │ ├── mandatory │ ├── CWC.zip │ ├── Import.zip │ ├── ListViewColors.zip │ ├── MailManager.zip │ ├── Mailchimp.zip │ ├── ModComments.zip │ ├── ModTracker.zip │ ├── PBXManager.zip │ ├── Pdfsettings.zip │ ├── Search.zip │ ├── ServiceContracts.zip │ ├── Services.zip │ ├── WSAPP.zip │ ├── Webforms.zip │ ├── berliWidgets.zip │ └── crmtogo.zip │ └── optional │ ├── Assets.zip │ ├── CustomerPortal.zip │ ├── Deutsch.zip │ ├── EmailTemplates.zip │ ├── Google.zip │ ├── Mobile.zip │ ├── Projects.zip │ ├── RecycleBin.zip │ ├── SMSNotifier.zip │ ├── ToolWidgets.zip │ ├── Verteiler.zip │ ├── berliCleverReach.zip │ ├── berliSoftphones.zip │ ├── berlimap.zip │ └── gdpr.zip ├── parent_tabdata.php ├── phpversionfail.php ├── pkg ├── apache │ ├── bin │ │ └── ShutdownApache.exe │ └── conf │ │ ├── lin_httpd.conf │ │ └── win_httpd.conf ├── bin │ ├── datamigration.bat │ ├── datamigration.sh │ ├── find_replace.bat │ ├── startvTiger.bat │ ├── startvTiger.sh │ ├── stopvTiger.bat │ ├── stopvTiger.sh │ └── uninstallvtiger.sh ├── license │ ├── License_linux.txt │ └── License_windows.txt ├── php │ └── php.ini └── vtiger │ ├── extensions │ └── Webservices │ │ ├── VTQL_Lexer.plex │ │ ├── VTQL_parser.y │ │ └── third-party │ │ ├── Lempar.php │ │ ├── LexerGenerator.php │ │ ├── LexerGenerator │ │ ├── Exception.php │ │ ├── Lexer.php │ │ ├── Parser.php │ │ ├── Parser.y │ │ ├── Regex │ │ │ ├── Lexer.php │ │ │ └── Parser.php │ │ └── cli.php │ │ ├── ParserGenerator.php │ │ └── ParserGenerator │ │ ├── Action.php │ │ ├── ActionTable.php │ │ ├── Config.php │ │ ├── Data.php │ │ ├── Parser.php │ │ ├── PropagationLink.php │ │ ├── Rule.php │ │ ├── State.php │ │ ├── Symbol.php │ │ └── cli.php │ ├── modules │ ├── Assets │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── Assets.php │ │ │ └── en_us │ │ │ │ └── Assets.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Assets │ │ │ │ ├── Assets.php │ │ │ │ └── models │ │ │ │ ├── DetailView.php │ │ │ │ └── Field.php │ │ └── templates │ │ │ ├── DetailViewSummaryContents.tpl │ │ │ └── ModuleSummaryView.tpl │ ├── CWC │ │ ├── language │ │ │ ├── de_de │ │ │ │ └── CWC.php │ │ │ └── en_us │ │ │ │ └── CWC.php │ │ ├── manifest.xml │ │ └── modules │ │ │ └── CWC │ │ │ ├── CWC.js │ │ │ ├── CWC.php │ │ │ ├── CWCAjax.php │ │ │ ├── CWCHandler.php │ │ │ ├── UpdateDocRel.php │ │ │ ├── getCampaignEntities.php │ │ │ ├── getDocRel.php │ │ │ └── index.php │ ├── ConfigEditor │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── ConfigEditor │ │ │ │ ├── ConfigEditor.js │ │ │ │ ├── ConfigEditor.php │ │ │ │ ├── ConfigEditorAjax.php │ │ │ │ ├── ConfigEditorHandler.php │ │ │ │ ├── ConfigFileReader.php │ │ │ │ ├── ConfigurationUtils.php │ │ │ │ ├── Request.php │ │ │ │ ├── Viewer.php │ │ │ │ ├── config.php │ │ │ │ ├── index.php │ │ │ │ └── language │ │ │ │ └── en_us.lang.php │ │ └── templates │ │ │ └── index.tpl │ ├── CronTasks │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── CronTasks │ │ │ │ ├── CronSequence.php │ │ │ │ ├── CronTasks.js │ │ │ │ ├── CronTasks.php │ │ │ │ ├── CronTasksAjax.php │ │ │ │ ├── EditCron.php │ │ │ │ ├── ListCronJobs.php │ │ │ │ ├── SaveCron.php │ │ │ │ └── language │ │ │ │ └── en_us.lang.php │ │ └── templates │ │ │ ├── Cron.tpl │ │ │ ├── CronContents.tpl │ │ │ └── EditCron.tpl │ ├── CustomerPortal │ │ ├── languages │ │ │ └── en_us │ │ │ │ └── Settings │ │ │ │ └── CustomerPortal.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── CustomerPortal │ │ │ │ ├── CustomerPortal.php │ │ │ │ └── schema.xml │ │ └── settings │ │ │ ├── actions │ │ │ └── Save.php │ │ │ ├── models │ │ │ └── Module.php │ │ │ ├── templates │ │ │ ├── Index.tpl │ │ │ └── resources │ │ │ │ └── CustomerPortal.js │ │ │ └── views │ │ │ └── Index.php │ ├── EmailTemplates │ │ ├── actions │ │ │ ├── Delete.php │ │ │ ├── DeleteAjax.php │ │ │ ├── MassDelete.php │ │ │ └── Save.php │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── EmailTemplates.php │ │ │ └── en_us │ │ │ │ └── EmailTemplates.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── EmailTemplates │ │ │ │ ├── EmailTemplates.php │ │ │ │ ├── actions │ │ │ │ ├── Delete.php │ │ │ │ ├── DeleteAjax.php │ │ │ │ ├── MassDelete.php │ │ │ │ └── Save.php │ │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ │ ├── models │ │ │ │ ├── DetailView.php │ │ │ │ ├── Field.php │ │ │ │ ├── ListView.php │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ │ ├── schema.xml │ │ │ │ └── views │ │ │ │ ├── Detail.php │ │ │ │ ├── Edit.php │ │ │ │ ├── List.php │ │ │ │ └── ListAjax.php │ │ ├── settings │ │ │ ├── models │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ ├── templates │ │ │ │ └── ListContents.tpl │ │ │ └── views │ │ │ │ └── List.php │ │ └── templates │ │ │ ├── DetailViewFullContents.tpl │ │ │ ├── DetailViewHeaderTitle.tpl │ │ │ ├── EditView.tpl │ │ │ ├── index.tpl │ │ │ └── resources │ │ │ └── Edit.js │ ├── Google │ │ ├── languages │ │ │ ├── de_de │ │ │ │ ├── Google.php │ │ │ │ └── Settings │ │ │ │ │ └── Google.php │ │ │ └── en_us │ │ │ │ ├── Google.php │ │ │ │ └── Settings │ │ │ │ └── Google.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Google │ │ │ │ ├── Google.php │ │ │ │ ├── actions │ │ │ │ ├── MapAjax.php │ │ │ │ └── SaveSettings.php │ │ │ │ ├── connectors │ │ │ │ ├── Calendar.php │ │ │ │ ├── Config.php │ │ │ │ ├── Contacts.php │ │ │ │ ├── Oauth.php │ │ │ │ ├── Oauth2.php │ │ │ │ └── Vtiger.php │ │ │ │ ├── controllers │ │ │ │ ├── Calendar.php │ │ │ │ ├── Contacts.php │ │ │ │ └── SyncServer.php │ │ │ │ ├── handlers │ │ │ │ ├── Vtiger.php │ │ │ │ └── VtigerSync.php │ │ │ │ ├── helpers │ │ │ │ ├── Map.php │ │ │ │ └── Utils.php │ │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ │ ├── models │ │ │ │ ├── Calendar.php │ │ │ │ ├── Contacts.php │ │ │ │ └── Module.php │ │ │ │ └── views │ │ │ │ ├── List.php │ │ │ │ ├── Map.php │ │ │ │ └── Setting.php │ │ ├── settings │ │ │ ├── actions │ │ │ │ ├── checkGoogleSettings.php │ │ │ │ └── saveGoogleSettings.php │ │ │ ├── models │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ ├── templates │ │ │ │ ├── GoogleSettings.tpl │ │ │ │ └── resources │ │ │ │ │ └── Index.js │ │ │ └── views │ │ │ │ └── Index.php │ │ └── templates │ │ │ ├── ContactsSyncSettings.tpl │ │ │ ├── ContentDetails.tpl │ │ │ ├── Contents.tpl │ │ │ ├── map.tpl │ │ │ └── resources │ │ │ ├── List.js │ │ │ └── map.js │ ├── Import │ │ ├── cron │ │ │ └── ScheduledImport.service │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── Import.php │ │ │ └── en_us │ │ │ │ └── Import.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Import │ │ │ │ ├── actions │ │ │ │ ├── Data.php │ │ │ │ ├── Lock.php │ │ │ │ └── Queue.php │ │ │ │ ├── helpers │ │ │ │ └── Utils.php │ │ │ │ ├── models │ │ │ │ ├── Config.php │ │ │ │ ├── ListView.php │ │ │ │ ├── Map.php │ │ │ │ └── Module.php │ │ │ │ ├── readers │ │ │ │ ├── CSVReader.php │ │ │ │ ├── FileReader.php │ │ │ │ ├── ICSReader.php │ │ │ │ └── VCardReader.php │ │ │ │ └── views │ │ │ │ ├── List.php │ │ │ │ └── Main.php │ │ └── templates │ │ │ ├── ImportAdvanced.tpl │ │ │ ├── ImportBasicStep.tpl │ │ │ ├── ImportDetails.tpl │ │ │ ├── ImportError.tpl │ │ │ ├── ImportResult.tpl │ │ │ ├── ImportSchedule.tpl │ │ │ ├── ImportStatus.tpl │ │ │ ├── ImportUndoResult.tpl │ │ │ ├── Import_Advanced_Buttons.tpl │ │ │ ├── Import_Basic_Buttons.tpl │ │ │ ├── Import_Default_Values_Widget.tpl │ │ │ ├── Import_Done_Buttons.tpl │ │ │ ├── Import_Finish_Buttons.tpl │ │ │ ├── Import_Result_Details.tpl │ │ │ ├── Import_Saved_Maps.tpl │ │ │ ├── Import_Step1.tpl │ │ │ ├── Import_Step2.tpl │ │ │ ├── Import_Step3.tpl │ │ │ ├── Import_Step4.tpl │ │ │ └── resources │ │ │ └── Import.js │ ├── ListViewColors │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── Settings │ │ │ │ │ └── ListViewColors.php │ │ │ └── en_us │ │ │ │ └── Settings │ │ │ │ └── ListViewColors.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── ListViewColors │ │ │ │ └── ListViewColors.php │ │ └── settings │ │ │ ├── models │ │ │ ├── Field.php │ │ │ └── Module.php │ │ │ ├── templates │ │ │ ├── ColorFieldsValueDetail.tpl │ │ │ ├── Index.tpl │ │ │ ├── colorFieldDetails.tpl │ │ │ └── resources │ │ │ │ └── ListViewColors.js │ │ │ └── views │ │ │ ├── Index.php │ │ │ └── IndexAjax.php │ ├── MailManager │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── MailManager.php │ │ │ └── en_us │ │ │ │ └── MailManager.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── MailManager │ │ │ │ ├── Config.php │ │ │ │ ├── MailManager.php │ │ │ │ ├── MailManagerHandler.php │ │ │ │ ├── actions │ │ │ │ ├── MailReminder.php │ │ │ │ ├── Relate.php │ │ │ │ └── Upload.php │ │ │ │ ├── connectors │ │ │ │ └── Connector.php │ │ │ │ ├── helpers │ │ │ │ └── Utils.php │ │ │ │ ├── models │ │ │ │ ├── Config.php │ │ │ │ ├── Draft.php │ │ │ │ ├── DraftFolder.php │ │ │ │ ├── Folder.php │ │ │ │ ├── Mailbox.php │ │ │ │ └── Message.php │ │ │ │ ├── runtime │ │ │ │ └── Request.php │ │ │ │ ├── schema.xml │ │ │ │ ├── third-party │ │ │ │ ├── AjaxUpload │ │ │ │ │ ├── ajaxUpload.php │ │ │ │ │ ├── fileuploader.css │ │ │ │ │ ├── fileuploader.js │ │ │ │ │ └── loading.gif │ │ │ │ ├── HTML.Safe.php │ │ │ │ ├── XML │ │ │ │ │ ├── HTMLSax3.php │ │ │ │ │ └── HTMLSax3 │ │ │ │ │ │ ├── Decorators.php │ │ │ │ │ │ └── States.php │ │ │ │ └── package.xml │ │ │ │ └── views │ │ │ │ ├── Abstract.php │ │ │ │ ├── Draft.php │ │ │ │ ├── Folder.php │ │ │ │ ├── Index.php │ │ │ │ ├── List.php │ │ │ │ ├── Mail.php │ │ │ │ ├── MainUI.php │ │ │ │ ├── Relation.php │ │ │ │ ├── Search.php │ │ │ │ ├── Settings.php │ │ │ │ └── showContactSearchOverlay.php │ │ └── templates │ │ │ ├── FolderDrafts.tpl │ │ │ ├── FolderList.tpl │ │ │ ├── FolderOpen.tpl │ │ │ ├── IndexPostProcess.tpl │ │ │ ├── IndexViewPreProcess.tpl │ │ │ ├── MailManagerCommentWidget.tpl │ │ │ ├── MailOpen.tpl │ │ │ ├── Mainui.tpl │ │ │ ├── MainuiQuickLinks.tpl │ │ │ ├── Relationship.tpl │ │ │ ├── Settings.tpl │ │ │ ├── SettingsDetail.tpl │ │ │ ├── SettingsEdit.tpl │ │ │ ├── index.tpl │ │ │ ├── resources │ │ │ └── MailManager.js │ │ │ └── sendMailToContact.tpl │ ├── Mailchimp │ │ ├── languages │ │ │ ├── de_de │ │ │ │ ├── Mailchimp.php │ │ │ │ └── Settings │ │ │ │ │ └── Mailchimp.php │ │ │ └── en_us │ │ │ │ ├── Mailchimp.php │ │ │ │ └── Settings │ │ │ │ └── Mailchimp.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ └── modules │ │ │ │ ├── Mailchimp │ │ │ │ ├── DetailViewFullContents.tpl │ │ │ │ ├── GroupSyncFooter.tpl │ │ │ │ ├── RelatedList.tpl │ │ │ │ ├── resources │ │ │ │ │ ├── Detail.js │ │ │ │ │ ├── List.js │ │ │ │ │ ├── Mailchimp.js │ │ │ │ │ └── RelatedList.js │ │ │ │ └── showGroupOverlay.tpl │ │ │ │ └── Settings │ │ │ │ └── Mailchimp │ │ │ │ ├── MailChimpSettings.tpl │ │ │ │ └── resources │ │ │ │ └── Index.js │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Mailchimp │ │ │ │ ├── Mailchimp.php │ │ │ │ ├── actions │ │ │ │ ├── DetailAjax.php │ │ │ │ ├── LoadSyncValues.php │ │ │ │ ├── MailChimpStepController.php │ │ │ │ └── RelationAjax.php │ │ │ │ ├── models │ │ │ │ ├── DetailView.php │ │ │ │ ├── Module.php │ │ │ │ ├── Record.php │ │ │ │ ├── Relation.php │ │ │ │ └── RelationListView.php │ │ │ │ ├── providers │ │ │ │ ├── Batch.php │ │ │ │ ├── MailChimp.php │ │ │ │ └── Webhook.php │ │ │ │ ├── schema.xml │ │ │ │ └── views │ │ │ │ ├── Detail.php │ │ │ │ ├── ListView.php │ │ │ │ ├── RelatedList.php │ │ │ │ └── showGroupOverlay.php │ │ ├── settings │ │ │ ├── actions │ │ │ │ └── saveMailchimpSettings.php │ │ │ ├── models │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ ├── templates │ │ │ │ ├── MailChimpSettings.tpl │ │ │ │ ├── resources │ │ │ │ │ └── Index.js │ │ │ │ └── widgets │ │ │ │ │ └── DetailViewBlockMailchimp.tpl │ │ │ └── views │ │ │ │ └── Index.php │ │ └── templates │ │ │ ├── DetailViewFullContents.tpl │ │ │ ├── GroupSyncFooter.tpl │ │ │ ├── RelatedList.tpl │ │ │ ├── resources │ │ │ ├── Detail.js │ │ │ ├── List.js │ │ │ ├── Mailchimp.js │ │ │ └── RelatedList.js │ │ │ └── showGroupOverlay.tpl │ ├── Mobile │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── Mobile.php │ │ │ └── en_us │ │ │ │ └── Mobile.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Mobile │ │ │ │ ├── Css │ │ │ │ ├── eventCalendar.css │ │ │ │ ├── eventCalendar_theme.css │ │ │ │ ├── eventCalendar_theme_responsive.css │ │ │ │ ├── images │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── ajax-loader.png │ │ │ │ │ ├── icons-18-black.png │ │ │ │ │ ├── icons-18-white.png │ │ │ │ │ ├── icons-36-black.png │ │ │ │ │ ├── icons-36-white.png │ │ │ │ │ ├── icons-png │ │ │ │ │ │ ├── action-black.png │ │ │ │ │ │ ├── action-white.png │ │ │ │ │ │ ├── alert-black.png │ │ │ │ │ │ ├── alert-white.png │ │ │ │ │ │ ├── arrow-d-black.png │ │ │ │ │ │ ├── arrow-d-l-black.png │ │ │ │ │ │ ├── arrow-d-l-white.png │ │ │ │ │ │ ├── arrow-d-r-black.png │ │ │ │ │ │ ├── arrow-d-r-white.png │ │ │ │ │ │ ├── arrow-d-white.png │ │ │ │ │ │ ├── arrow-l-black.png │ │ │ │ │ │ ├── arrow-l-white.png │ │ │ │ │ │ ├── arrow-r-black.png │ │ │ │ │ │ ├── arrow-r-white.png │ │ │ │ │ │ ├── arrow-u-black.png │ │ │ │ │ │ ├── arrow-u-l-black.png │ │ │ │ │ │ ├── arrow-u-l-white.png │ │ │ │ │ │ ├── arrow-u-r-black.png │ │ │ │ │ │ ├── arrow-u-r-white.png │ │ │ │ │ │ ├── arrow-u-white.png │ │ │ │ │ │ ├── audio-black.png │ │ │ │ │ │ ├── audio-white.png │ │ │ │ │ │ ├── back-black.png │ │ │ │ │ │ ├── back-white.png │ │ │ │ │ │ ├── bars-black.png │ │ │ │ │ │ ├── bars-white.png │ │ │ │ │ │ ├── bullets-black.png │ │ │ │ │ │ ├── bullets-white.png │ │ │ │ │ │ ├── calendar-black.png │ │ │ │ │ │ ├── calendar-white.png │ │ │ │ │ │ ├── camera-black.png │ │ │ │ │ │ ├── camera-white.png │ │ │ │ │ │ ├── carat-d-black.png │ │ │ │ │ │ ├── carat-d-white.png │ │ │ │ │ │ ├── carat-l-black.png │ │ │ │ │ │ ├── carat-l-white.png │ │ │ │ │ │ ├── carat-r-black.png │ │ │ │ │ │ ├── carat-r-white.png │ │ │ │ │ │ ├── carat-u-black.png │ │ │ │ │ │ ├── carat-u-white.png │ │ │ │ │ │ ├── check-black.png │ │ │ │ │ │ ├── check-white.png │ │ │ │ │ │ ├── clock-black.png │ │ │ │ │ │ ├── clock-white.png │ │ │ │ │ │ ├── cloud-black.png │ │ │ │ │ │ ├── cloud-white.png │ │ │ │ │ │ ├── comment-black.png │ │ │ │ │ │ ├── comment-white.png │ │ │ │ │ │ ├── delete-black.png │ │ │ │ │ │ ├── delete-white.png │ │ │ │ │ │ ├── edit-black.png │ │ │ │ │ │ ├── edit-white.png │ │ │ │ │ │ ├── eye-black.png │ │ │ │ │ │ ├── eye-white.png │ │ │ │ │ │ ├── forbidden-black.png │ │ │ │ │ │ ├── forbidden-white.png │ │ │ │ │ │ ├── forward-black.png │ │ │ │ │ │ ├── forward-white.png │ │ │ │ │ │ ├── gear-black.png │ │ │ │ │ │ ├── gear-white.png │ │ │ │ │ │ ├── grid-black.png │ │ │ │ │ │ ├── grid-white.png │ │ │ │ │ │ ├── heart-black.png │ │ │ │ │ │ ├── heart-white.png │ │ │ │ │ │ ├── home-black.png │ │ │ │ │ │ ├── home-white.png │ │ │ │ │ │ ├── info-black.png │ │ │ │ │ │ ├── info-white.png │ │ │ │ │ │ ├── location-black.png │ │ │ │ │ │ ├── location-white.png │ │ │ │ │ │ ├── lock-black.png │ │ │ │ │ │ ├── lock-white.png │ │ │ │ │ │ ├── mail-black.png │ │ │ │ │ │ ├── mail-white.png │ │ │ │ │ │ ├── minus-black.png │ │ │ │ │ │ ├── minus-white.png │ │ │ │ │ │ ├── navigation-black.png │ │ │ │ │ │ ├── navigation-white.png │ │ │ │ │ │ ├── phone-black.png │ │ │ │ │ │ ├── phone-white.png │ │ │ │ │ │ ├── plus-black.png │ │ │ │ │ │ ├── plus-white.png │ │ │ │ │ │ ├── power-black.png │ │ │ │ │ │ ├── power-white.png │ │ │ │ │ │ ├── recycle-black.png │ │ │ │ │ │ ├── recycle-white.png │ │ │ │ │ │ ├── refresh-black.png │ │ │ │ │ │ ├── refresh-white.png │ │ │ │ │ │ ├── search-black.png │ │ │ │ │ │ ├── search-white.png │ │ │ │ │ │ ├── shop-black.png │ │ │ │ │ │ ├── shop-white.png │ │ │ │ │ │ ├── star-black.png │ │ │ │ │ │ ├── star-white.png │ │ │ │ │ │ ├── tag-black.png │ │ │ │ │ │ ├── tag-white.png │ │ │ │ │ │ ├── user-black.png │ │ │ │ │ │ ├── user-white.png │ │ │ │ │ │ ├── video-black.png │ │ │ │ │ │ └── video-white.png │ │ │ │ │ ├── icons-svg │ │ │ │ │ │ ├── action-black.svg │ │ │ │ │ │ ├── action-white.svg │ │ │ │ │ │ ├── alert-black.svg │ │ │ │ │ │ ├── alert-white.svg │ │ │ │ │ │ ├── arrow-d-black.svg │ │ │ │ │ │ ├── arrow-d-l-black.svg │ │ │ │ │ │ ├── arrow-d-l-white.svg │ │ │ │ │ │ ├── arrow-d-r-black.svg │ │ │ │ │ │ ├── arrow-d-r-white.svg │ │ │ │ │ │ ├── arrow-d-white.svg │ │ │ │ │ │ ├── arrow-l-black.svg │ │ │ │ │ │ ├── arrow-l-white.svg │ │ │ │ │ │ ├── arrow-r-black.svg │ │ │ │ │ │ ├── arrow-r-white.svg │ │ │ │ │ │ ├── arrow-u-black.svg │ │ │ │ │ │ ├── arrow-u-l-black.svg │ │ │ │ │ │ ├── arrow-u-l-white.svg │ │ │ │ │ │ ├── arrow-u-r-black.svg │ │ │ │ │ │ ├── arrow-u-r-white.svg │ │ │ │ │ │ ├── arrow-u-white.svg │ │ │ │ │ │ ├── audio-black.svg │ │ │ │ │ │ ├── audio-white.svg │ │ │ │ │ │ ├── back-black.svg │ │ │ │ │ │ ├── back-white.svg │ │ │ │ │ │ ├── bars-black.svg │ │ │ │ │ │ ├── bars-white.svg │ │ │ │ │ │ ├── bullets-black.svg │ │ │ │ │ │ ├── bullets-white.svg │ │ │ │ │ │ ├── calendar-black.svg │ │ │ │ │ │ ├── calendar-white.svg │ │ │ │ │ │ ├── camera-black.svg │ │ │ │ │ │ ├── camera-white.svg │ │ │ │ │ │ ├── carat-d-black.svg │ │ │ │ │ │ ├── carat-d-white.svg │ │ │ │ │ │ ├── carat-l-black.svg │ │ │ │ │ │ ├── carat-l-white.svg │ │ │ │ │ │ ├── carat-r-black.svg │ │ │ │ │ │ ├── carat-r-white.svg │ │ │ │ │ │ ├── carat-u-black.svg │ │ │ │ │ │ ├── carat-u-white.svg │ │ │ │ │ │ ├── check-black.svg │ │ │ │ │ │ ├── check-white.svg │ │ │ │ │ │ ├── clock-black.svg │ │ │ │ │ │ ├── clock-white.svg │ │ │ │ │ │ ├── cloud-black.svg │ │ │ │ │ │ ├── cloud-white.svg │ │ │ │ │ │ ├── comment-black.svg │ │ │ │ │ │ ├── comment-white.svg │ │ │ │ │ │ ├── delete-black.svg │ │ │ │ │ │ ├── delete-white.svg │ │ │ │ │ │ ├── edit-black.svg │ │ │ │ │ │ ├── edit-white.svg │ │ │ │ │ │ ├── eye-black.svg │ │ │ │ │ │ ├── eye-white.svg │ │ │ │ │ │ ├── forbidden-black.svg │ │ │ │ │ │ ├── forbidden-white.svg │ │ │ │ │ │ ├── forward-black.svg │ │ │ │ │ │ ├── forward-white.svg │ │ │ │ │ │ ├── gear-black.svg │ │ │ │ │ │ ├── gear-white.svg │ │ │ │ │ │ ├── grid-black.svg │ │ │ │ │ │ ├── grid-white.svg │ │ │ │ │ │ ├── heart-black.svg │ │ │ │ │ │ ├── heart-white.svg │ │ │ │ │ │ ├── home-black.svg │ │ │ │ │ │ ├── home-white.svg │ │ │ │ │ │ ├── info-black.svg │ │ │ │ │ │ ├── info-white.svg │ │ │ │ │ │ ├── location-black.svg │ │ │ │ │ │ ├── location-white.svg │ │ │ │ │ │ ├── lock-black.svg │ │ │ │ │ │ ├── lock-white.svg │ │ │ │ │ │ ├── mail-black.svg │ │ │ │ │ │ ├── mail-white.svg │ │ │ │ │ │ ├── minus-black.svg │ │ │ │ │ │ ├── minus-white.svg │ │ │ │ │ │ ├── navigation-black.svg │ │ │ │ │ │ ├── navigation-white.svg │ │ │ │ │ │ ├── phone-black.svg │ │ │ │ │ │ ├── phone-white.svg │ │ │ │ │ │ ├── plus-black.svg │ │ │ │ │ │ ├── plus-white.svg │ │ │ │ │ │ ├── power-black.svg │ │ │ │ │ │ ├── power-white.svg │ │ │ │ │ │ ├── recycle-black.svg │ │ │ │ │ │ ├── recycle-white.svg │ │ │ │ │ │ ├── refresh-black.svg │ │ │ │ │ │ ├── refresh-white.svg │ │ │ │ │ │ ├── search-black.svg │ │ │ │ │ │ ├── search-white.svg │ │ │ │ │ │ ├── shop-black.svg │ │ │ │ │ │ ├── shop-white.svg │ │ │ │ │ │ ├── star-black.svg │ │ │ │ │ │ ├── star-white.svg │ │ │ │ │ │ ├── tag-black.svg │ │ │ │ │ │ ├── tag-white.svg │ │ │ │ │ │ ├── user-black.svg │ │ │ │ │ │ ├── user-white.svg │ │ │ │ │ │ ├── video-black.svg │ │ │ │ │ │ └── video-white.svg │ │ │ │ │ └── images.png │ │ │ │ ├── jquery.mobile-1.4.5.min.css │ │ │ │ ├── jquery.mobile.icons.min.css │ │ │ │ ├── jquery.mobile.structure-1.4.5.min.css │ │ │ │ ├── mobiscroll.custom-2.6.2.min.css │ │ │ │ ├── style.css │ │ │ │ └── theme.css │ │ │ │ ├── Js │ │ │ │ ├── getScrollcontent.js │ │ │ │ ├── jquery-1.11.2.min.js │ │ │ │ ├── jquery.easing-1.3.min.js │ │ │ │ ├── jquery.eventCalendar.js │ │ │ │ ├── jquery.eventCalendar.min.js │ │ │ │ ├── jquery.mobile-1.4.5.min.js │ │ │ │ ├── lang │ │ │ │ │ ├── de_de.lang.js │ │ │ │ │ ├── en_us.lang.js │ │ │ │ │ ├── ge_de.lang.js │ │ │ │ │ └── nl_nl.lang.js │ │ │ │ ├── mobiscroll.custom-2.6.2.min.js │ │ │ │ └── moment.js │ │ │ │ ├── Mobile-CHANGES │ │ │ │ ├── Mobile-README │ │ │ │ ├── Mobile.Config.php │ │ │ │ ├── Mobile.js │ │ │ │ ├── Mobile.php │ │ │ │ ├── MobileAjax.php │ │ │ │ ├── MobileHandler.php │ │ │ │ ├── MobileSettings.config.php │ │ │ │ ├── api.php │ │ │ │ ├── api.test.php │ │ │ │ ├── api │ │ │ │ ├── Relation.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Session.php │ │ │ │ ├── ws │ │ │ │ │ ├── AddRecordComment.php │ │ │ │ │ ├── AlertDetailsWithMessage.php │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── DeleteRecords.php │ │ │ │ │ ├── Describe.php │ │ │ │ │ ├── FetchAllAlerts.php │ │ │ │ │ ├── FetchModuleFilters.php │ │ │ │ │ ├── FetchModuleOwners.php │ │ │ │ │ ├── FetchRecord.php │ │ │ │ │ ├── FetchRecordWithGrouping.php │ │ │ │ │ ├── FetchRecordsWithGrouping.php │ │ │ │ │ ├── FilterDetailsWithCount.php │ │ │ │ │ ├── History.php │ │ │ │ │ ├── ListModuleRecords.php │ │ │ │ │ ├── Login.php │ │ │ │ │ ├── LoginAndFetchModules.php │ │ │ │ │ ├── Query.php │ │ │ │ │ ├── QueryWithGrouping.php │ │ │ │ │ ├── RelatedRecordsWithGrouping.php │ │ │ │ │ ├── SaveRecord.php │ │ │ │ │ ├── SyncModuleRecords.php │ │ │ │ │ ├── TaxByType.php │ │ │ │ │ ├── Utils.php │ │ │ │ │ ├── addComment.php │ │ │ │ │ ├── getScrollContent.php │ │ │ │ │ ├── globalsearch.php │ │ │ │ │ └── models │ │ │ │ │ │ ├── Alert.php │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ ├── Filter.php │ │ │ │ │ │ ├── Paging.php │ │ │ │ │ │ ├── SearchFilter.php │ │ │ │ │ │ └── alerts │ │ │ │ │ │ ├── EventsOfMineToday.php │ │ │ │ │ │ ├── IdleTicketsOfMine.php │ │ │ │ │ │ ├── NewTicketOfMine.php │ │ │ │ │ │ ├── PendingTicketsOfMine.php │ │ │ │ │ │ ├── PotentialsDueIn5Days.php │ │ │ │ │ │ ├── ProjectTasksOfMine.php │ │ │ │ │ │ ├── Projects.php │ │ │ │ │ │ └── ServerTimeSampleAlert.php │ │ │ │ └── wsapi.php │ │ │ │ ├── events.json.php │ │ │ │ ├── ical.php │ │ │ │ ├── images │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── ajax-loader.png │ │ │ │ ├── icons-18-black.png │ │ │ │ ├── icons-18-white.png │ │ │ │ ├── icons-36-black.png │ │ │ │ ├── icons-36-white.png │ │ │ │ └── images.png │ │ │ │ ├── index.php │ │ │ │ ├── language │ │ │ │ ├── de_de.lang.php │ │ │ │ ├── en_us.lang.php │ │ │ │ ├── ge_de.lang.php │ │ │ │ └── nl_nl.lang.php │ │ │ │ ├── manifest.xml │ │ │ │ ├── resources │ │ │ │ ├── images │ │ │ │ │ ├── appicon.jpg │ │ │ │ │ ├── crm-now_icon.ico │ │ │ │ │ └── iconza │ │ │ │ │ │ ├── royalblue │ │ │ │ │ │ ├── add_16x16.png │ │ │ │ │ │ ├── add_24x24.png │ │ │ │ │ │ ├── add_32x32.png │ │ │ │ │ │ ├── address_book_16x16.png │ │ │ │ │ │ ├── address_book_24x24.png │ │ │ │ │ │ ├── address_book_32x32.png │ │ │ │ │ │ ├── alert_16x16.png │ │ │ │ │ │ ├── alert_24x24.png │ │ │ │ │ │ ├── alert_32x32.png │ │ │ │ │ │ ├── briefcase_16x16.png │ │ │ │ │ │ ├── briefcase_24x24.png │ │ │ │ │ │ ├── briefcase_32x32.png │ │ │ │ │ │ ├── buildings_16x16.png │ │ │ │ │ │ ├── buildings_24x24.png │ │ │ │ │ │ ├── buildings_32x32.png │ │ │ │ │ │ ├── calculator_16x16.png │ │ │ │ │ │ ├── calculator_24x24.png │ │ │ │ │ │ ├── calculator_32x32.png │ │ │ │ │ │ ├── camera_16x16.png │ │ │ │ │ │ ├── camera_24x24.png │ │ │ │ │ │ ├── camera_32x32.png │ │ │ │ │ │ ├── cancel_16x16.png │ │ │ │ │ │ ├── cancel_24x24.png │ │ │ │ │ │ ├── cancel_32x32.png │ │ │ │ │ │ ├── cd_16x16.png │ │ │ │ │ │ ├── cd_24x24.png │ │ │ │ │ │ ├── cd_32x32.png │ │ │ │ │ │ ├── comment_16x16.png │ │ │ │ │ │ ├── comment_24x24.png │ │ │ │ │ │ ├── comment_32x32.png │ │ │ │ │ │ ├── delete_16x16.png │ │ │ │ │ │ ├── delete_24x24.png │ │ │ │ │ │ ├── delete_32x32.png │ │ │ │ │ │ ├── door_16x16.png │ │ │ │ │ │ ├── door_24x24.png │ │ │ │ │ │ ├── door_32x32.png │ │ │ │ │ │ ├── down_arrow_16x16.png │ │ │ │ │ │ ├── down_arrow_24x24.png │ │ │ │ │ │ ├── down_arrow_32x32.png │ │ │ │ │ │ ├── download_16x16.png │ │ │ │ │ │ ├── download_24x24.png │ │ │ │ │ │ ├── download_32x32.png │ │ │ │ │ │ ├── downloads_folder_16x16.png │ │ │ │ │ │ ├── downloads_folder_24x24.png │ │ │ │ │ │ ├── downloads_folder_32x32.png │ │ │ │ │ │ ├── edit_16x16.png │ │ │ │ │ │ ├── edit_24x24.png │ │ │ │ │ │ ├── edit_32x32.png │ │ │ │ │ │ ├── error_16x16.png │ │ │ │ │ │ ├── error_24x24.png │ │ │ │ │ │ ├── error_32x32.png │ │ │ │ │ │ ├── expand_16x16.png │ │ │ │ │ │ ├── expand_24x24.png │ │ │ │ │ │ ├── expand_32x32.png │ │ │ │ │ │ ├── file_16x16.png │ │ │ │ │ │ ├── file_24x24.png │ │ │ │ │ │ ├── file_32x32.png │ │ │ │ │ │ ├── film_16x16.png │ │ │ │ │ │ ├── film_24x24.png │ │ │ │ │ │ ├── film_32x32.png │ │ │ │ │ │ ├── flag_16x16.png │ │ │ │ │ │ ├── flag_24x24.png │ │ │ │ │ │ ├── flag_32x32.png │ │ │ │ │ │ ├── folder_16x16.png │ │ │ │ │ │ ├── folder_24x24.png │ │ │ │ │ │ ├── folder_32x32.png │ │ │ │ │ │ ├── gear_wheel_16x16.png │ │ │ │ │ │ ├── gear_wheel_24x24.png │ │ │ │ │ │ ├── gear_wheel_32x32.png │ │ │ │ │ │ ├── globe_16x16.png │ │ │ │ │ │ ├── globe_24x24.png │ │ │ │ │ │ ├── globe_32x32.png │ │ │ │ │ │ ├── hard_disk_16x16.png │ │ │ │ │ │ ├── hard_disk_24x24.png │ │ │ │ │ │ ├── hard_disk_32x32.png │ │ │ │ │ │ ├── heart_16x16.png │ │ │ │ │ │ ├── heart_24x24.png │ │ │ │ │ │ ├── heart_32x32.png │ │ │ │ │ │ ├── help_16x16.png │ │ │ │ │ │ ├── help_24x24.png │ │ │ │ │ │ ├── help_32x32.png │ │ │ │ │ │ ├── house_16x16.png │ │ │ │ │ │ ├── house_24x24.png │ │ │ │ │ │ ├── house_32x32.png │ │ │ │ │ │ ├── info_16x16.png │ │ │ │ │ │ ├── info_24x24.png │ │ │ │ │ │ ├── info_32x32.png │ │ │ │ │ │ ├── iphone_16x16.png │ │ │ │ │ │ ├── iphone_24x24.png │ │ │ │ │ │ ├── iphone_32x32.png │ │ │ │ │ │ ├── left_arrow_16x16.png │ │ │ │ │ │ ├── left_arrow_24x24.png │ │ │ │ │ │ ├── left_arrow_32x32.png │ │ │ │ │ │ ├── lens_16x16.png │ │ │ │ │ │ ├── lens_24x24.png │ │ │ │ │ │ ├── lens_32x32.png │ │ │ │ │ │ ├── line_graph_16x16.png │ │ │ │ │ │ ├── line_graph_24x24.png │ │ │ │ │ │ ├── line_graph_32x32.png │ │ │ │ │ │ ├── lock_16x16.png │ │ │ │ │ │ ├── lock_24x24.png │ │ │ │ │ │ ├── lock_32x32.png │ │ │ │ │ │ ├── logout_16x16.png │ │ │ │ │ │ ├── logout_24x24.png │ │ │ │ │ │ ├── logout_32x32.png │ │ │ │ │ │ ├── magic_wand_16x16.png │ │ │ │ │ │ ├── magic_wand_24x24.png │ │ │ │ │ │ ├── magic_wand_32x32.png │ │ │ │ │ │ ├── mail_16x16.png │ │ │ │ │ │ ├── mail_24x24.png │ │ │ │ │ │ ├── mail_32x32.png │ │ │ │ │ │ ├── monitor_16x16.png │ │ │ │ │ │ ├── monitor_24x24.png │ │ │ │ │ │ ├── monitor_32x32.png │ │ │ │ │ │ ├── move_16x16.png │ │ │ │ │ │ ├── move_24x24.png │ │ │ │ │ │ ├── move_32x32.png │ │ │ │ │ │ ├── music_16x16.png │ │ │ │ │ │ ├── music_24x24.png │ │ │ │ │ │ ├── music_32x32.png │ │ │ │ │ │ ├── network_16x16.png │ │ │ │ │ │ ├── network_24x24.png │ │ │ │ │ │ ├── network_32x32.png │ │ │ │ │ │ ├── no_sound_16x16.png │ │ │ │ │ │ ├── no_sound_24x24.png │ │ │ │ │ │ ├── no_sound_32x32.png │ │ │ │ │ │ ├── picture_16x16.png │ │ │ │ │ │ ├── picture_24x24.png │ │ │ │ │ │ ├── picture_32x32.png │ │ │ │ │ │ ├── print_16x16.png │ │ │ │ │ │ ├── print_24x24.png │ │ │ │ │ │ ├── print_32x32.png │ │ │ │ │ │ ├── push_pin_16x16.png │ │ │ │ │ │ ├── push_pin_24x24.png │ │ │ │ │ │ ├── push_pin_32x32.png │ │ │ │ │ │ ├── redo_16x16.png │ │ │ │ │ │ ├── redo_24x24.png │ │ │ │ │ │ ├── redo_32x32.png │ │ │ │ │ │ ├── remove_16x16.png │ │ │ │ │ │ ├── remove_24x24.png │ │ │ │ │ │ ├── remove_32x32.png │ │ │ │ │ │ ├── right_arrow_16x16.png │ │ │ │ │ │ ├── right_arrow_24x24.png │ │ │ │ │ │ ├── right_arrow_32x32.png │ │ │ │ │ │ ├── round_add_16x16.png │ │ │ │ │ │ ├── round_add_24x24.png │ │ │ │ │ │ ├── round_add_32x32.png │ │ │ │ │ │ ├── round_remove_16x16.png │ │ │ │ │ │ ├── round_remove_24x24.png │ │ │ │ │ │ ├── round_remove_32x32.png │ │ │ │ │ │ ├── rss_16x16.png │ │ │ │ │ │ ├── rss_24x24.png │ │ │ │ │ │ ├── rss_32x32.png │ │ │ │ │ │ ├── save_16x16.png │ │ │ │ │ │ ├── save_24x24.png │ │ │ │ │ │ ├── save_32x32.png │ │ │ │ │ │ ├── scissors_16x16.png │ │ │ │ │ │ ├── scissors_24x24.png │ │ │ │ │ │ ├── scissors_32x32.png │ │ │ │ │ │ ├── script_16x16.png │ │ │ │ │ │ ├── script_24x24.png │ │ │ │ │ │ ├── script_32x32.png │ │ │ │ │ │ ├── shield_16x16.png │ │ │ │ │ │ ├── shield_24x24.png │ │ │ │ │ │ ├── shield_32x32.png │ │ │ │ │ │ ├── sound_16x16.png │ │ │ │ │ │ ├── sound_24x24.png │ │ │ │ │ │ ├── sound_32x32.png │ │ │ │ │ │ ├── star_16x16.png │ │ │ │ │ │ ├── star_24x24.png │ │ │ │ │ │ ├── star_32x32.png │ │ │ │ │ │ ├── stop_16x16.png │ │ │ │ │ │ ├── stop_24x24.png │ │ │ │ │ │ ├── stop_32x32.png │ │ │ │ │ │ ├── tag_16x16.png │ │ │ │ │ │ ├── tag_24x24.png │ │ │ │ │ │ ├── tag_32x32.png │ │ │ │ │ │ ├── toolbox_16x16.png │ │ │ │ │ │ ├── toolbox_24x24.png │ │ │ │ │ │ ├── toolbox_32x32.png │ │ │ │ │ │ ├── trackback_16x16.png │ │ │ │ │ │ ├── trackback_24x24.png │ │ │ │ │ │ ├── trackback_32x32.png │ │ │ │ │ │ ├── trash_16x16.png │ │ │ │ │ │ ├── trash_24x24.png │ │ │ │ │ │ ├── trash_32x32.png │ │ │ │ │ │ ├── tune_16x16.png │ │ │ │ │ │ ├── tune_24x24.png │ │ │ │ │ │ ├── tune_32x32.png │ │ │ │ │ │ ├── undo_16x16.png │ │ │ │ │ │ ├── undo_24x24.png │ │ │ │ │ │ ├── undo_32x32.png │ │ │ │ │ │ ├── unlock_16x16.png │ │ │ │ │ │ ├── unlock_24x24.png │ │ │ │ │ │ ├── unlock_32x32.png │ │ │ │ │ │ ├── up_arrow_16x16.png │ │ │ │ │ │ ├── up_arrow_24x24.png │ │ │ │ │ │ ├── up_arrow_32x32.png │ │ │ │ │ │ ├── user_16x16.png │ │ │ │ │ │ ├── user_24x24.png │ │ │ │ │ │ ├── user_32x32.png │ │ │ │ │ │ ├── warning_16x16.png │ │ │ │ │ │ ├── warning_24x24.png │ │ │ │ │ │ ├── warning_32x32.png │ │ │ │ │ │ ├── wrench_16x16.png │ │ │ │ │ │ ├── wrench_24x24.png │ │ │ │ │ │ ├── wrench_32x32.png │ │ │ │ │ │ ├── zoom_in_16x16.png │ │ │ │ │ │ ├── zoom_in_24x24.png │ │ │ │ │ │ ├── zoom_in_32x32.png │ │ │ │ │ │ ├── zoom_out_16x16.png │ │ │ │ │ │ ├── zoom_out_24x24.png │ │ │ │ │ │ └── zoom_out_32x32.png │ │ │ │ │ │ ├── white │ │ │ │ │ │ ├── add_16x16.png │ │ │ │ │ │ ├── add_24x24.png │ │ │ │ │ │ ├── add_32x32.png │ │ │ │ │ │ ├── address_book_16x16.png │ │ │ │ │ │ ├── address_book_24x24.png │ │ │ │ │ │ ├── address_book_32x32.png │ │ │ │ │ │ ├── alert_16x16.png │ │ │ │ │ │ ├── alert_24x24.png │ │ │ │ │ │ ├── alert_32x32.png │ │ │ │ │ │ ├── briefcase_16x16.png │ │ │ │ │ │ ├── briefcase_24x24.png │ │ │ │ │ │ ├── briefcase_32x32.png │ │ │ │ │ │ ├── buildings_16x16.png │ │ │ │ │ │ ├── buildings_24x24.png │ │ │ │ │ │ ├── buildings_32x32.png │ │ │ │ │ │ ├── calculator_16x16.png │ │ │ │ │ │ ├── calculator_24x24.png │ │ │ │ │ │ ├── calculator_32x32.png │ │ │ │ │ │ ├── camera_16x16.png │ │ │ │ │ │ ├── camera_24x24.png │ │ │ │ │ │ ├── camera_32x32.png │ │ │ │ │ │ ├── cancel_16x16.png │ │ │ │ │ │ ├── cancel_24x24.png │ │ │ │ │ │ ├── cancel_32x32.png │ │ │ │ │ │ ├── cd_16x16.png │ │ │ │ │ │ ├── cd_24x24.png │ │ │ │ │ │ ├── cd_32x32.png │ │ │ │ │ │ ├── comment_16x16.png │ │ │ │ │ │ ├── comment_24x24.png │ │ │ │ │ │ ├── comment_32x32.png │ │ │ │ │ │ ├── delete_16x16.png │ │ │ │ │ │ ├── delete_24x24.png │ │ │ │ │ │ ├── delete_32x32.png │ │ │ │ │ │ ├── door_16x16.png │ │ │ │ │ │ ├── door_24x24.png │ │ │ │ │ │ ├── door_32x32.png │ │ │ │ │ │ ├── down_arrow_16x16.png │ │ │ │ │ │ ├── down_arrow_24x24.png │ │ │ │ │ │ ├── down_arrow_32x32.png │ │ │ │ │ │ ├── download_16x16.png │ │ │ │ │ │ ├── download_24x24.png │ │ │ │ │ │ ├── download_32x32.png │ │ │ │ │ │ ├── downloads_folder_16x16.png │ │ │ │ │ │ ├── downloads_folder_24x24.png │ │ │ │ │ │ ├── downloads_folder_32x32.png │ │ │ │ │ │ ├── edit_16x16.png │ │ │ │ │ │ ├── edit_24x24.png │ │ │ │ │ │ ├── edit_32x32.png │ │ │ │ │ │ ├── error_16x16.png │ │ │ │ │ │ ├── error_24x24.png │ │ │ │ │ │ ├── error_32x32.png │ │ │ │ │ │ ├── expand_16x16.png │ │ │ │ │ │ ├── expand_24x24.png │ │ │ │ │ │ ├── expand_32x32.png │ │ │ │ │ │ ├── file_16x16.png │ │ │ │ │ │ ├── file_24x24.png │ │ │ │ │ │ ├── file_32x32.png │ │ │ │ │ │ ├── film_16x16.png │ │ │ │ │ │ ├── film_24x24.png │ │ │ │ │ │ ├── film_32x32.png │ │ │ │ │ │ ├── flag_16x16.png │ │ │ │ │ │ ├── flag_24x24.png │ │ │ │ │ │ ├── flag_32x32.png │ │ │ │ │ │ ├── folder_16x16.png │ │ │ │ │ │ ├── folder_24x24.png │ │ │ │ │ │ ├── folder_32x32.png │ │ │ │ │ │ ├── gear_wheel_16x16.png │ │ │ │ │ │ ├── gear_wheel_24x24.png │ │ │ │ │ │ ├── gear_wheel_32x32.png │ │ │ │ │ │ ├── globe_16x16.png │ │ │ │ │ │ ├── globe_24x24.png │ │ │ │ │ │ ├── globe_32x32.png │ │ │ │ │ │ ├── hard_disk_16x16.png │ │ │ │ │ │ ├── hard_disk_24x24.png │ │ │ │ │ │ ├── hard_disk_32x32.png │ │ │ │ │ │ ├── heart_16x16.png │ │ │ │ │ │ ├── heart_24x24.png │ │ │ │ │ │ ├── heart_32x32.png │ │ │ │ │ │ ├── help_16x16.png │ │ │ │ │ │ ├── help_24x24.png │ │ │ │ │ │ ├── help_32x32.png │ │ │ │ │ │ ├── house_16x16.png │ │ │ │ │ │ ├── house_24x24.png │ │ │ │ │ │ ├── house_32x32.png │ │ │ │ │ │ ├── info_16x16.png │ │ │ │ │ │ ├── info_24x24.png │ │ │ │ │ │ ├── info_32x32.png │ │ │ │ │ │ ├── iphone_16x16.png │ │ │ │ │ │ ├── iphone_24x24.png │ │ │ │ │ │ ├── iphone_32x32.png │ │ │ │ │ │ ├── left_arrow_16x16.png │ │ │ │ │ │ ├── left_arrow_24x24.png │ │ │ │ │ │ ├── left_arrow_32x32.png │ │ │ │ │ │ ├── lens_16x16.png │ │ │ │ │ │ ├── lens_24x24.png │ │ │ │ │ │ ├── lens_32x32.png │ │ │ │ │ │ ├── line_graph_16x16.png │ │ │ │ │ │ ├── line_graph_24x24.png │ │ │ │ │ │ ├── line_graph_32x32.png │ │ │ │ │ │ ├── lock_16x16.png │ │ │ │ │ │ ├── lock_24x24.png │ │ │ │ │ │ ├── lock_32x32.png │ │ │ │ │ │ ├── magic_wand_16x16.png │ │ │ │ │ │ ├── magic_wand_24x24.png │ │ │ │ │ │ ├── magic_wand_32x32.png │ │ │ │ │ │ ├── mail_16x16.png │ │ │ │ │ │ ├── mail_24x24.png │ │ │ │ │ │ ├── mail_32x32.png │ │ │ │ │ │ ├── monitor_16x16.png │ │ │ │ │ │ ├── monitor_24x24.png │ │ │ │ │ │ ├── monitor_32x32.png │ │ │ │ │ │ ├── move_16x16.png │ │ │ │ │ │ ├── move_24x24.png │ │ │ │ │ │ ├── move_32x32.png │ │ │ │ │ │ ├── music_16x16.png │ │ │ │ │ │ ├── music_24x24.png │ │ │ │ │ │ ├── music_32x32.png │ │ │ │ │ │ ├── network_16x16.png │ │ │ │ │ │ ├── network_24x24.png │ │ │ │ │ │ ├── network_32x32.png │ │ │ │ │ │ ├── no_sound_16x16.png │ │ │ │ │ │ ├── no_sound_24x24.png │ │ │ │ │ │ ├── no_sound_32x32.png │ │ │ │ │ │ ├── picture_16x16.png │ │ │ │ │ │ ├── picture_24x24.png │ │ │ │ │ │ ├── picture_32x32.png │ │ │ │ │ │ ├── print_16x16.png │ │ │ │ │ │ ├── print_24x24.png │ │ │ │ │ │ ├── print_32x32.png │ │ │ │ │ │ ├── push_pin_16x16.png │ │ │ │ │ │ ├── push_pin_24x24.png │ │ │ │ │ │ ├── push_pin_32x32.png │ │ │ │ │ │ ├── redo_16x16.png │ │ │ │ │ │ ├── redo_24x24.png │ │ │ │ │ │ ├── redo_32x32.png │ │ │ │ │ │ ├── remove_16x16.png │ │ │ │ │ │ ├── remove_24x24.png │ │ │ │ │ │ ├── remove_32x32.png │ │ │ │ │ │ ├── right_arrow_16x16.png │ │ │ │ │ │ ├── right_arrow_24x24.png │ │ │ │ │ │ ├── right_arrow_32x32.png │ │ │ │ │ │ ├── round_add_16x16.png │ │ │ │ │ │ ├── round_add_24x24.png │ │ │ │ │ │ ├── round_add_32x32.png │ │ │ │ │ │ ├── round_remove_16x16.png │ │ │ │ │ │ ├── round_remove_24x24.png │ │ │ │ │ │ ├── round_remove_32x32.png │ │ │ │ │ │ ├── rss_16x16.png │ │ │ │ │ │ ├── rss_24x24.png │ │ │ │ │ │ ├── rss_32x32.png │ │ │ │ │ │ ├── save_16x16.png │ │ │ │ │ │ ├── save_24x24.png │ │ │ │ │ │ ├── save_32x32.png │ │ │ │ │ │ ├── scissors_16x16.png │ │ │ │ │ │ ├── scissors_24x24.png │ │ │ │ │ │ ├── scissors_32x32.png │ │ │ │ │ │ ├── script_16x16.png │ │ │ │ │ │ ├── script_24x24.png │ │ │ │ │ │ ├── script_32x32.png │ │ │ │ │ │ ├── shield_16x16.png │ │ │ │ │ │ ├── shield_24x24.png │ │ │ │ │ │ ├── shield_32x32.png │ │ │ │ │ │ ├── sound_16x16.png │ │ │ │ │ │ ├── sound_24x24.png │ │ │ │ │ │ ├── sound_32x32.png │ │ │ │ │ │ ├── star_16x16.png │ │ │ │ │ │ ├── star_24x24.png │ │ │ │ │ │ ├── star_32x32.png │ │ │ │ │ │ ├── stop_16x16.png │ │ │ │ │ │ ├── stop_24x24.png │ │ │ │ │ │ ├── stop_32x32.png │ │ │ │ │ │ ├── tag_16x16.png │ │ │ │ │ │ ├── tag_24x24.png │ │ │ │ │ │ ├── tag_32x32.png │ │ │ │ │ │ ├── toolbox_16x16.png │ │ │ │ │ │ ├── toolbox_24x24.png │ │ │ │ │ │ ├── toolbox_32x32.png │ │ │ │ │ │ ├── trackback_16x16.png │ │ │ │ │ │ ├── trackback_24x24.png │ │ │ │ │ │ ├── trackback_32x32.png │ │ │ │ │ │ ├── trash_16x16.png │ │ │ │ │ │ ├── trash_24x24.png │ │ │ │ │ │ ├── trash_32x32.png │ │ │ │ │ │ ├── tune_16x16.png │ │ │ │ │ │ ├── tune_24x24.png │ │ │ │ │ │ ├── tune_32x32.png │ │ │ │ │ │ ├── undo_16x16.png │ │ │ │ │ │ ├── undo_24x24.png │ │ │ │ │ │ ├── undo_32x32.png │ │ │ │ │ │ ├── unlock_16x16.png │ │ │ │ │ │ ├── unlock_24x24.png │ │ │ │ │ │ ├── unlock_32x32.png │ │ │ │ │ │ ├── up_arrow_16x16.png │ │ │ │ │ │ ├── up_arrow_24x24.png │ │ │ │ │ │ ├── up_arrow_32x32.png │ │ │ │ │ │ ├── user_16x16.png │ │ │ │ │ │ ├── user_24x24.png │ │ │ │ │ │ ├── user_32x32.png │ │ │ │ │ │ ├── warning_16x16.png │ │ │ │ │ │ ├── warning_24x24.png │ │ │ │ │ │ ├── warning_32x32.png │ │ │ │ │ │ ├── wrench_16x16.png │ │ │ │ │ │ ├── wrench_24x24.png │ │ │ │ │ │ ├── wrench_32x32.png │ │ │ │ │ │ ├── zoom_in_16x16.png │ │ │ │ │ │ ├── zoom_in_24x24.png │ │ │ │ │ │ ├── zoom_in_32x32.png │ │ │ │ │ │ ├── zoom_out_16x16.png │ │ │ │ │ │ ├── zoom_out_24x24.png │ │ │ │ │ │ └── zoom_out_32x32.png │ │ │ │ │ │ └── yellow │ │ │ │ │ │ ├── add_24x24.png │ │ │ │ │ │ ├── add_32x32.png │ │ │ │ │ │ ├── address_book_24x24.png │ │ │ │ │ │ ├── address_book_32x32.png │ │ │ │ │ │ ├── alert_24x24.png │ │ │ │ │ │ ├── alert_32x32.png │ │ │ │ │ │ ├── briefcase_24x24.png │ │ │ │ │ │ ├── briefcase_32x32.png │ │ │ │ │ │ ├── buildings_24x24.png │ │ │ │ │ │ ├── buildings_32x32.png │ │ │ │ │ │ ├── calculator_24x24.png │ │ │ │ │ │ ├── calculator_32x32.png │ │ │ │ │ │ ├── camera_24x24.png │ │ │ │ │ │ ├── camera_32x32.png │ │ │ │ │ │ ├── cancel_24x24.png │ │ │ │ │ │ ├── cancel_32x32.png │ │ │ │ │ │ ├── cd_24x24.png │ │ │ │ │ │ ├── cd_32x32.png │ │ │ │ │ │ ├── comment_24x24.png │ │ │ │ │ │ ├── comment_32x32.png │ │ │ │ │ │ ├── delete_24x24.png │ │ │ │ │ │ ├── delete_32x32.png │ │ │ │ │ │ ├── door_24x24.png │ │ │ │ │ │ ├── door_32x32.png │ │ │ │ │ │ ├── down_arrow_24x24.png │ │ │ │ │ │ ├── down_arrow_32x32.png │ │ │ │ │ │ ├── download_24x24.png │ │ │ │ │ │ ├── download_32x32.png │ │ │ │ │ │ ├── downloads_folder_24x24.png │ │ │ │ │ │ ├── downloads_folder_32x32.png │ │ │ │ │ │ ├── edit_24x24.png │ │ │ │ │ │ ├── edit_32x32.png │ │ │ │ │ │ ├── error_24x24.png │ │ │ │ │ │ ├── error_32x32.png │ │ │ │ │ │ ├── expand_24x24.png │ │ │ │ │ │ ├── expand_32x32.png │ │ │ │ │ │ ├── file_24x24.png │ │ │ │ │ │ ├── file_32x32.png │ │ │ │ │ │ ├── film_24x24.png │ │ │ │ │ │ ├── film_32x32.png │ │ │ │ │ │ ├── flag_24x24.png │ │ │ │ │ │ ├── flag_32x32.png │ │ │ │ │ │ ├── folder_24x24.png │ │ │ │ │ │ ├── folder_32x32.png │ │ │ │ │ │ ├── gear_wheel_24x24.png │ │ │ │ │ │ ├── gear_wheel_32x32.png │ │ │ │ │ │ ├── globe_24x24.png │ │ │ │ │ │ ├── globe_32x32.png │ │ │ │ │ │ ├── hard_disk_24x24.png │ │ │ │ │ │ ├── hard_disk_32x32.png │ │ │ │ │ │ ├── heart_24x24.png │ │ │ │ │ │ ├── heart_32x32.png │ │ │ │ │ │ ├── help_24x24.png │ │ │ │ │ │ ├── help_32x32.png │ │ │ │ │ │ ├── house_24x24.png │ │ │ │ │ │ ├── house_32x32.png │ │ │ │ │ │ ├── info_24x24.png │ │ │ │ │ │ ├── info_32x32.png │ │ │ │ │ │ ├── iphone_24x24.png │ │ │ │ │ │ ├── iphone_32x32.png │ │ │ │ │ │ ├── left_arrow_24x24.png │ │ │ │ │ │ ├── left_arrow_32x32.png │ │ │ │ │ │ ├── lens_24x24.png │ │ │ │ │ │ ├── lens_32x32.png │ │ │ │ │ │ ├── line_graph_24x24.png │ │ │ │ │ │ ├── line_graph_32x32.png │ │ │ │ │ │ ├── lock_24x24.png │ │ │ │ │ │ ├── lock_32x32.png │ │ │ │ │ │ ├── logout_24x24.png │ │ │ │ │ │ ├── logout_32x32.png │ │ │ │ │ │ ├── magic_wand_24x24.png │ │ │ │ │ │ ├── magic_wand_32x32.png │ │ │ │ │ │ ├── mail_24x24.png │ │ │ │ │ │ ├── mail_32x32.png │ │ │ │ │ │ ├── monitor_24x24.png │ │ │ │ │ │ ├── monitor_32x32.png │ │ │ │ │ │ ├── move_24x24.png │ │ │ │ │ │ ├── move_32x32.png │ │ │ │ │ │ ├── music_24x24.png │ │ │ │ │ │ ├── music_32x32.png │ │ │ │ │ │ ├── network_24x24.png │ │ │ │ │ │ ├── network_32x32.png │ │ │ │ │ │ ├── no_sound_24x24.png │ │ │ │ │ │ ├── no_sound_32x32.png │ │ │ │ │ │ ├── picture_24x24.png │ │ │ │ │ │ ├── picture_32x32.png │ │ │ │ │ │ ├── print_24x24.png │ │ │ │ │ │ ├── print_32x32.png │ │ │ │ │ │ ├── push_pin_24x24.png │ │ │ │ │ │ ├── push_pin_32x32.png │ │ │ │ │ │ ├── redo_24x24.png │ │ │ │ │ │ ├── redo_32x32.png │ │ │ │ │ │ ├── remove_24x24.png │ │ │ │ │ │ ├── remove_32x32.png │ │ │ │ │ │ ├── right_arrow_24x24.png │ │ │ │ │ │ ├── right_arrow_32x32.png │ │ │ │ │ │ ├── round_add_24x24.png │ │ │ │ │ │ ├── round_add_32x32.png │ │ │ │ │ │ ├── round_remove_24x24.png │ │ │ │ │ │ ├── round_remove_32x32.png │ │ │ │ │ │ ├── rss_24x24.png │ │ │ │ │ │ ├── rss_32x32.png │ │ │ │ │ │ ├── save_24x24.png │ │ │ │ │ │ ├── save_32x32.png │ │ │ │ │ │ ├── scissors_24x24.png │ │ │ │ │ │ ├── scissors_32x32.png │ │ │ │ │ │ ├── script_24x24.png │ │ │ │ │ │ ├── script_32x32.png │ │ │ │ │ │ ├── shield_24x24.png │ │ │ │ │ │ ├── shield_32x32.png │ │ │ │ │ │ ├── sound_24x24.png │ │ │ │ │ │ ├── sound_32x32.png │ │ │ │ │ │ ├── star_24x24.png │ │ │ │ │ │ ├── star_32x32.png │ │ │ │ │ │ ├── stop_24x24.png │ │ │ │ │ │ ├── stop_32x32.png │ │ │ │ │ │ ├── tag_24x24.png │ │ │ │ │ │ ├── tag_32x32.png │ │ │ │ │ │ ├── toolbox_24x24.png │ │ │ │ │ │ ├── toolbox_32x32.png │ │ │ │ │ │ ├── trackback_24x24.png │ │ │ │ │ │ ├── trackback_32x32.png │ │ │ │ │ │ ├── trash_24x24.png │ │ │ │ │ │ ├── trash_32x32.png │ │ │ │ │ │ ├── tune_24x24.png │ │ │ │ │ │ ├── tune_32x32.png │ │ │ │ │ │ ├── undo_24x24.png │ │ │ │ │ │ ├── undo_32x32.png │ │ │ │ │ │ ├── unlock_24x24.png │ │ │ │ │ │ ├── unlock_32x32.png │ │ │ │ │ │ ├── up_arrow_24x24.png │ │ │ │ │ │ ├── up_arrow_32x32.png │ │ │ │ │ │ ├── user_24x24.png │ │ │ │ │ │ ├── user_32x32.png │ │ │ │ │ │ ├── warning_24x24.png │ │ │ │ │ │ ├── warning_32x32.png │ │ │ │ │ │ ├── wrench_24x24.png │ │ │ │ │ │ ├── wrench_32x32.png │ │ │ │ │ │ ├── zoom_in_24x24.png │ │ │ │ │ │ ├── zoom_in_32x32.png │ │ │ │ │ │ ├── zoom_out_24x24.png │ │ │ │ │ │ └── zoom_out_32x32.png │ │ │ │ ├── iui │ │ │ │ │ ├── backButton.png │ │ │ │ │ ├── blueButton.png │ │ │ │ │ ├── blue_hd_bg.png │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── grayButton.png │ │ │ │ │ ├── iui-logo-touch-icon.png │ │ │ │ │ ├── iui.css │ │ │ │ │ ├── iui.js │ │ │ │ │ ├── iui.original.css │ │ │ │ │ ├── iui.original.js │ │ │ │ │ ├── iuix.css │ │ │ │ │ ├── iuix.js │ │ │ │ │ ├── listArrow.png │ │ │ │ │ ├── listArrowSel.png │ │ │ │ │ ├── listGroup.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── pinstripes.png │ │ │ │ │ ├── selection.png │ │ │ │ │ ├── thumb.png │ │ │ │ │ ├── toggle.png │ │ │ │ │ ├── toggleOn.png │ │ │ │ │ ├── toolButton.png │ │ │ │ │ ├── toolbar.png │ │ │ │ │ └── whiteButton.png │ │ │ │ └── skins │ │ │ │ │ └── default.css │ │ │ │ ├── schema.xml │ │ │ │ ├── third-party │ │ │ │ └── qCal │ │ │ │ │ ├── CHANGES │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── VERSION │ │ │ │ │ ├── autoload.php │ │ │ │ │ ├── qCal.php │ │ │ │ │ └── qCal │ │ │ │ │ ├── Component.php │ │ │ │ │ ├── Component │ │ │ │ │ ├── Daylight.php │ │ │ │ │ ├── Standard.php │ │ │ │ │ ├── Valarm.php │ │ │ │ │ ├── Vcalendar.php │ │ │ │ │ ├── Vevent.php │ │ │ │ │ ├── Vfreebusy.php │ │ │ │ │ ├── Vjournal.php │ │ │ │ │ ├── Vtimezone.php │ │ │ │ │ └── Vtodo.php │ │ │ │ │ ├── Date.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── DateTime │ │ │ │ │ ├── Duration.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── InvalidDate.php │ │ │ │ │ │ ├── InvalidPeriod.php │ │ │ │ │ │ ├── InvalidRecur.php │ │ │ │ │ │ ├── InvalidTime.php │ │ │ │ │ │ ├── InvalidTimezone.php │ │ │ │ │ │ └── InvalidWeekday.php │ │ │ │ │ ├── Period.php │ │ │ │ │ ├── Recur.php │ │ │ │ │ ├── Recur │ │ │ │ │ │ ├── Daily.php │ │ │ │ │ │ ├── Hourly.php │ │ │ │ │ │ ├── Minutely.php │ │ │ │ │ │ ├── Monthly.php │ │ │ │ │ │ ├── Rule.php │ │ │ │ │ │ ├── Rule │ │ │ │ │ │ │ ├── ByDay.php │ │ │ │ │ │ │ ├── ByHour.php │ │ │ │ │ │ │ ├── ByMinute.php │ │ │ │ │ │ │ ├── ByMonth.php │ │ │ │ │ │ │ ├── ByMonthDay.php │ │ │ │ │ │ │ ├── BySecond.php │ │ │ │ │ │ │ ├── BySetPos.php │ │ │ │ │ │ │ ├── ByWeekNo.php │ │ │ │ │ │ │ └── ByYearDay.php │ │ │ │ │ │ ├── Secondly.php │ │ │ │ │ │ ├── Weekly.php │ │ │ │ │ │ └── Yearly.php │ │ │ │ │ └── Timezone.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── FileNotFound.php │ │ │ │ │ ├── InvalidComponent.php │ │ │ │ │ ├── InvalidFile.php │ │ │ │ │ ├── InvalidProperty.php │ │ │ │ │ ├── InvalidPropertyValue.php │ │ │ │ │ ├── MissingComponent.php │ │ │ │ │ └── MissingProperty.php │ │ │ │ │ ├── Loader.php │ │ │ │ │ ├── Parser.php │ │ │ │ │ ├── Parser │ │ │ │ │ ├── Lexer.php │ │ │ │ │ └── Lexer │ │ │ │ │ │ └── iCalendar.php │ │ │ │ │ ├── Property.php │ │ │ │ │ ├── Property │ │ │ │ │ ├── Action.php │ │ │ │ │ ├── Attach.php │ │ │ │ │ ├── Attendee.php │ │ │ │ │ ├── Calscale.php │ │ │ │ │ ├── Categories.php │ │ │ │ │ ├── Class.php │ │ │ │ │ ├── Comment.php │ │ │ │ │ ├── Completed.php │ │ │ │ │ ├── Contact.php │ │ │ │ │ ├── Created.php │ │ │ │ │ ├── Description.php │ │ │ │ │ ├── Dtend.php │ │ │ │ │ ├── Dtstamp.php │ │ │ │ │ ├── Dtstart.php │ │ │ │ │ ├── Due.php │ │ │ │ │ ├── Duration.php │ │ │ │ │ ├── Exdate.php │ │ │ │ │ ├── Exrule.php │ │ │ │ │ ├── Freebusy.php │ │ │ │ │ ├── Geo.php │ │ │ │ │ ├── LastModified.php │ │ │ │ │ ├── Location.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── MultiValue.php │ │ │ │ │ ├── NonStandard.php │ │ │ │ │ ├── Organizer.php │ │ │ │ │ ├── PercentComplete.php │ │ │ │ │ ├── Priority.php │ │ │ │ │ ├── Prodid.php │ │ │ │ │ ├── Rdate.php │ │ │ │ │ ├── RecurrenceId.php │ │ │ │ │ ├── RelatedTo.php │ │ │ │ │ ├── Repeat.php │ │ │ │ │ ├── RequestStatus.php │ │ │ │ │ ├── Resources.php │ │ │ │ │ ├── Rrule.php │ │ │ │ │ ├── Sequence.php │ │ │ │ │ ├── Status.php │ │ │ │ │ ├── Summary.php │ │ │ │ │ ├── Transp.php │ │ │ │ │ ├── Trigger.php │ │ │ │ │ ├── Tzid.php │ │ │ │ │ ├── Tzname.php │ │ │ │ │ ├── Tzoffsetfrom.php │ │ │ │ │ ├── Tzoffsetto.php │ │ │ │ │ ├── Tzurl.php │ │ │ │ │ ├── Uid.php │ │ │ │ │ ├── Url.php │ │ │ │ │ └── Version.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ ├── Renderer │ │ │ │ │ └── iCalendar.php │ │ │ │ │ ├── Time.php │ │ │ │ │ ├── Timezone.php │ │ │ │ │ ├── Value.php │ │ │ │ │ └── Value │ │ │ │ │ ├── Binary.php │ │ │ │ │ ├── Boolean.php │ │ │ │ │ ├── CalAddress.php │ │ │ │ │ ├── Date.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Duration.php │ │ │ │ │ ├── Float.php │ │ │ │ │ ├── Integer.php │ │ │ │ │ ├── Period.php │ │ │ │ │ ├── Recur.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── Time.php │ │ │ │ │ ├── Uri.php │ │ │ │ │ └── UtcOffset.php │ │ │ │ └── ui │ │ │ │ ├── Error.php │ │ │ │ ├── FetchRecordWithGrouping.php │ │ │ │ ├── ListModuleRecords.php │ │ │ │ ├── Login.php │ │ │ │ ├── LoginAndFetchModules.php │ │ │ │ ├── Logout.php │ │ │ │ ├── SaveRecord.php │ │ │ │ ├── SearchConfig.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Viewer.php │ │ │ │ ├── addComment.php │ │ │ │ ├── createActivity.php │ │ │ │ ├── deleteConfirmation.php │ │ │ │ ├── edit.php │ │ │ │ ├── getAutocomplete.php │ │ │ │ ├── getRelationList.php │ │ │ │ ├── getScrollContent.php │ │ │ │ ├── globalsearch.php │ │ │ │ └── models │ │ │ │ ├── Block.php │ │ │ │ ├── Field.php │ │ │ │ ├── Module.php │ │ │ │ ├── ModuleRecord.php │ │ │ │ └── SearchFilter.php │ │ └── templates │ │ │ └── generic │ │ │ ├── Comments.tpl │ │ │ ├── Delete.tpl │ │ │ ├── Detail.tpl │ │ │ ├── Error.tpl │ │ │ ├── Footer.tpl │ │ │ ├── GlobalSearch.tpl │ │ │ ├── Header.tpl │ │ │ ├── Home.tpl │ │ │ ├── List.tpl │ │ │ ├── Login.tpl │ │ │ ├── Search.tpl │ │ │ ├── SearchConfig.tpl │ │ │ ├── decideActivityType.tpl │ │ │ ├── deleteConfirmation.tpl │ │ │ ├── edit.tpl │ │ │ └── getRelatedLists.tpl │ ├── ModComments │ │ ├── languages │ │ │ └── en_us │ │ │ │ └── ModComments.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── ModComments │ │ │ │ ├── ModComments.php │ │ │ │ ├── ModCommentsCore.php │ │ │ │ ├── ModCommentsHandler.php │ │ │ │ ├── ModCommentsWidgetHandler.php │ │ │ │ ├── actions │ │ │ │ ├── Delete.php │ │ │ │ ├── MassSaveAjax.php │ │ │ │ ├── Save.php │ │ │ │ └── SaveAjax.php │ │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ │ ├── models │ │ │ │ ├── Comments.php │ │ │ │ ├── DetailView.php │ │ │ │ ├── ListView.php │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ │ └── views │ │ │ │ ├── Detail.php │ │ │ │ ├── DetailAjax.php │ │ │ │ ├── Edit.php │ │ │ │ └── List.php │ │ └── settings │ │ │ ├── actions │ │ │ └── save.php │ │ │ ├── templates │ │ │ └── index.tpl │ │ │ └── views │ │ │ └── Edit.php │ ├── ModTracker │ │ ├── languages │ │ │ └── en_us │ │ │ │ └── ModTracker.php │ │ ├── manifest.xml │ │ └── modules │ │ │ └── ModTracker │ │ │ ├── ModTracker.php │ │ │ ├── ModTrackerHandler.php │ │ │ ├── ModTrackerUtils.php │ │ │ ├── models │ │ │ ├── Field.php │ │ │ ├── Record.php │ │ │ └── Relation.php │ │ │ ├── schema.xml │ │ │ └── views │ │ │ └── ListAjax.php │ ├── PBXManager │ │ ├── languages │ │ │ ├── de_de │ │ │ │ ├── PBXManager.php │ │ │ │ └── Settings │ │ │ │ │ └── PBXManager.php │ │ │ └── en_us │ │ │ │ ├── PBXManager.php │ │ │ │ └── Settings │ │ │ │ └── PBXManager.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── PBXManager │ │ │ │ ├── PBXManager.php │ │ │ │ ├── PBXManagerHandler.php │ │ │ │ ├── actions │ │ │ │ ├── IncomingCallPoll.php │ │ │ │ └── OutgoingCall.php │ │ │ │ ├── callbacks │ │ │ │ └── PBXManager.php │ │ │ │ ├── connectors │ │ │ │ └── PBXManager.php │ │ │ │ ├── controllers │ │ │ │ └── PBXManager.php │ │ │ │ ├── models │ │ │ │ ├── DetailView.php │ │ │ │ ├── ListView.php │ │ │ │ ├── Module.php │ │ │ │ ├── Record.php │ │ │ │ └── Server.php │ │ │ │ ├── resources │ │ │ │ ├── PBXManagerJS.js │ │ │ │ └── images │ │ │ │ │ ├── Incoming.png │ │ │ │ │ └── Outgoing.png │ │ │ │ ├── schema.xml │ │ │ │ └── views │ │ │ │ └── Detail.php │ │ ├── settings │ │ │ ├── actions │ │ │ │ ├── Gateway.php │ │ │ │ └── SaveAjax.php │ │ │ ├── models │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ ├── templates │ │ │ │ ├── Edit.tpl │ │ │ │ ├── index.tpl │ │ │ │ └── resources │ │ │ │ │ └── Index.js │ │ │ └── views │ │ │ │ ├── Edit.php │ │ │ │ └── Index.php │ │ └── templates │ │ │ └── DetailViewHeaderTitle.tpl │ ├── Pdfsettings │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── Pdfsettings.php │ │ │ └── en_us │ │ │ │ └── Pdfsettings.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ └── modules │ │ │ │ └── Pdfsettings │ │ │ │ ├── ListViewContents.tpl │ │ │ │ ├── ListViewHeader.tpl │ │ │ │ └── resources │ │ │ │ ├── List.js │ │ │ │ └── ajaxtab.js │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Pdfsettings │ │ │ │ ├── Pdfsettings.php │ │ │ │ ├── PdfsettingsHandler.php │ │ │ │ ├── actions │ │ │ │ └── UpdatePDFSettings.php │ │ │ │ ├── helpers │ │ │ │ └── PDFutils.php │ │ │ │ ├── languages │ │ │ │ ├── de_de │ │ │ │ │ ├── de_de.Invoice.lang.pdf.php │ │ │ │ │ ├── de_de.PurchaseOrder.lang.pdf.php │ │ │ │ │ ├── de_de.Quotes.lang.pdf.php │ │ │ │ │ ├── de_de.SalesOrder.lang.pdf.php │ │ │ │ │ └── de_de.lang.js │ │ │ │ └── en_us │ │ │ │ │ ├── en_us.Invoice.lang.pdf.php │ │ │ │ │ ├── en_us.PurchaseOrder.lang.pdf.php │ │ │ │ │ ├── en_us.Quotes.lang.pdf.php │ │ │ │ │ ├── en_us.SalesOrder.lang.pdf.php │ │ │ │ │ └── en_us.lang.js │ │ │ │ ├── models │ │ │ │ ├── ListView.php │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ │ ├── schema.xml │ │ │ │ ├── third-party │ │ │ │ ├── img │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── tab_left_active.gif │ │ │ │ │ ├── tab_left_inactive.gif │ │ │ │ │ ├── tab_left_over.gif │ │ │ │ │ ├── tab_right_active.gif │ │ │ │ │ ├── tab_right_inactive.gif │ │ │ │ │ └── tab_right_over.gif │ │ │ │ └── js │ │ │ │ │ ├── tab-view.css │ │ │ │ │ └── tab-view.js │ │ │ │ └── views │ │ │ │ ├── Index.php │ │ │ │ ├── List.php │ │ │ │ └── ViewTypes.php │ │ └── templates │ │ │ ├── ListViewContents.tpl │ │ │ ├── ListViewHeader.tpl │ │ │ └── resources │ │ │ ├── List.js │ │ │ └── ajaxtab.js │ ├── Projects │ │ ├── Project │ │ │ ├── languages │ │ │ │ ├── de_de │ │ │ │ │ └── Project.php │ │ │ │ └── en_us │ │ │ │ │ └── Project.php │ │ │ ├── manifest.xml │ │ │ ├── modules │ │ │ │ └── Project │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── models │ │ │ │ │ ├── DetailView.php │ │ │ │ │ ├── ListView.php │ │ │ │ │ ├── Module.php │ │ │ │ │ ├── Record.php │ │ │ │ │ ├── Relation.php │ │ │ │ │ └── RelationListView.php │ │ │ │ │ └── views │ │ │ │ │ └── Detail.php │ │ │ └── templates │ │ │ │ ├── DetailViewHeaderTitle.tpl │ │ │ │ ├── DetailViewSummaryContents.tpl │ │ │ │ ├── ModuleSummaryView.tpl │ │ │ │ ├── SummaryViewWidgets.tpl │ │ │ │ ├── SummaryWidgets.tpl │ │ │ │ └── resources │ │ │ │ └── Detail.js │ │ ├── ProjectMilestone │ │ │ ├── languages │ │ │ │ ├── de_de │ │ │ │ │ └── ProjectMilestone.php │ │ │ │ └── en_us │ │ │ │ │ └── ProjectMilestone.php │ │ │ ├── manifest.xml │ │ │ ├── models │ │ │ │ └── Module.php │ │ │ └── modules │ │ │ │ └── ProjectMilestone │ │ │ │ ├── ProjectMilestone.php │ │ │ │ └── models │ │ │ │ └── Module.php │ │ ├── ProjectTask │ │ │ ├── languages │ │ │ │ ├── de_de │ │ │ │ │ └── ProjectTask.php │ │ │ │ └── en_us │ │ │ │ │ └── ProjectTask.php │ │ │ ├── manifest.xml │ │ │ └── modules │ │ │ │ └── ProjectTask │ │ │ │ ├── ProjectTask.php │ │ │ │ └── models │ │ │ │ └── Module.php │ │ └── manifest.xml │ ├── RecycleBin │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── RecycleBin.php │ │ │ └── en_us │ │ │ │ └── RecycleBin.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── RecycleBin │ │ │ │ ├── RecycleBin.php │ │ │ │ ├── actions │ │ │ │ └── RecycleBinAjax.php │ │ │ │ ├── models │ │ │ │ ├── ListView.php │ │ │ │ └── Module.php │ │ │ │ └── views │ │ │ │ ├── List.php │ │ │ │ └── ListAjax.php │ │ └── templates │ │ │ ├── ListViewContents.tpl │ │ │ ├── ListViewHeader.tpl │ │ │ ├── RecycleBin.tpl │ │ │ ├── RecycleBinContents.tpl │ │ │ └── resources │ │ │ └── List.js │ ├── SMSNotifier │ │ ├── languages │ │ │ ├── de_de │ │ │ │ ├── SMSNotifier.php │ │ │ │ └── Settings │ │ │ │ │ └── SMSNotifier.php │ │ │ └── en_us │ │ │ │ ├── SMSNotifier.php │ │ │ │ └── Settings │ │ │ │ └── SMSNotifier.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ └── modules │ │ │ │ ├── SMSNotifier │ │ │ │ └── StatusWidget.tpl │ │ │ │ └── Settings │ │ │ │ └── SMSNotifier │ │ │ │ ├── ListViewContents.tpl │ │ │ │ └── ProviderEditFields.tpl │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── SMSNotifier │ │ │ │ ├── SMSNotifier.php │ │ │ │ ├── SMSNotifierBase.php │ │ │ │ ├── SMSNotifierHandler.php │ │ │ │ ├── actions │ │ │ │ ├── CheckServerInfo.php │ │ │ │ └── MassSaveAjax.php │ │ │ │ ├── models │ │ │ │ ├── DetailView.php │ │ │ │ ├── ISMSProvider.php │ │ │ │ ├── ListView.php │ │ │ │ ├── Module.php │ │ │ │ ├── Provider.php │ │ │ │ └── Record.php │ │ │ │ ├── providers │ │ │ │ ├── ClickATell.php │ │ │ │ ├── MyProvider.php │ │ │ │ └── Nexmo.php │ │ │ │ ├── schema.xml │ │ │ │ ├── views │ │ │ │ ├── Detail.php │ │ │ │ └── Edit.php │ │ │ │ └── workflow │ │ │ │ ├── VTSMSTask.js │ │ │ │ └── VTSMSTask.php │ │ ├── settings │ │ │ ├── actions │ │ │ │ ├── Delete.php │ │ │ │ └── SaveAjax.php │ │ │ ├── models │ │ │ │ ├── Field.php │ │ │ │ ├── Module.php │ │ │ │ ├── ProviderField.php │ │ │ │ └── Record.php │ │ │ ├── templates │ │ │ │ ├── EditView.tpl │ │ │ │ ├── ProviderEditFields.tpl │ │ │ │ ├── TextAnyWhereEditField.tpl │ │ │ │ └── resources │ │ │ │ │ └── List.js │ │ │ └── views │ │ │ │ ├── Edit.php │ │ │ │ └── List.php │ │ └── templates │ │ │ └── StatusWidget.tpl │ ├── Search │ │ ├── languages │ │ │ ├── de_de │ │ │ │ ├── Search.php │ │ │ │ └── Settings │ │ │ │ │ └── Search.php │ │ │ ├── en_us │ │ │ │ ├── Search.php │ │ │ │ └── Settings │ │ │ │ │ └── Search.php │ │ │ └── fr_fr │ │ │ │ ├── Search.php │ │ │ │ └── Settings │ │ │ │ └── Search.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ ├── Search │ │ │ │ ├── Search.php │ │ │ │ ├── handlers │ │ │ │ │ └── RecordSearchLabelUpdater.php │ │ │ │ └── readme.txt │ │ │ └── Vtiger │ │ │ │ └── models │ │ │ │ └── Record.php │ │ └── settings │ │ │ ├── actions │ │ │ └── SaveAjax.php │ │ │ ├── models │ │ │ └── Module.php │ │ │ ├── templates │ │ │ ├── Index.tpl │ │ │ ├── SearchResult.tpl │ │ │ ├── SearchResultEntries.tpl │ │ │ ├── SideBar.tpl │ │ │ └── resources │ │ │ │ ├── Search.js │ │ │ │ └── globalsearch.js │ │ │ └── views │ │ │ └── Index.php │ ├── ServiceContracts │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── ServiceContracts.php │ │ │ └── en_us │ │ │ │ └── ServiceContracts.php │ │ ├── manifest.xml │ │ └── modules │ │ │ └── ServiceContracts │ │ │ ├── ServiceContracts.php │ │ │ ├── ServiceContractsHandler.php │ │ │ └── models │ │ │ └── Module.php │ ├── Services │ │ ├── languages │ │ │ └── en_us │ │ │ │ └── Services.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Services │ │ │ │ ├── Services.php │ │ │ │ ├── actions │ │ │ │ ├── MassSave.php │ │ │ │ ├── RelationAjax.php │ │ │ │ └── SaveAjax.php │ │ │ │ ├── models │ │ │ │ ├── DetailView.php │ │ │ │ ├── ListView.php │ │ │ │ ├── MassEditRecordStructure.php │ │ │ │ ├── Module.php │ │ │ │ ├── Record.php │ │ │ │ └── Relation.php │ │ │ │ └── views │ │ │ │ ├── Detail.php │ │ │ │ ├── Edit.php │ │ │ │ ├── MoreCurrenciesList.php │ │ │ │ ├── PriceBookProductPopup.php │ │ │ │ ├── PriceBookProductPopupAjax.php │ │ │ │ └── QuickCreateAjax.php │ │ └── templates │ │ │ └── resources │ │ │ └── Edit.js │ ├── ToolWidgets │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── ToolWidgets.php │ │ │ └── en_us │ │ │ │ └── ToolWidgets.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ ├── modules │ │ │ │ └── ToolWidgets │ │ │ │ │ ├── createCopyPasteDataMenue.tpl │ │ │ │ │ ├── resources │ │ │ │ │ └── popupMenueCopyAndPaste.js │ │ │ │ │ └── showCopyPasteDataWidget.tpl │ │ │ │ └── skins │ │ │ │ └── images │ │ │ │ └── DefaultModule.png │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── ToolWidgets │ │ │ │ ├── ToolWidgets.php │ │ │ │ ├── ToolWidgetsHandler.php │ │ │ │ └── views │ │ │ │ ├── createCopyAndPasteMenu.php │ │ │ │ └── showCopyPasteData.php │ │ └── templates │ │ │ ├── createCopyPasteDataMenue.tpl │ │ │ ├── resources │ │ │ └── popupMenueCopyAndPaste.js │ │ │ └── showCopyPasteDataWidget.tpl │ ├── Tooltip │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Tooltip │ │ │ │ ├── ComputeTooltip.php │ │ │ │ ├── EditQuickView.php │ │ │ │ ├── QuickView.php │ │ │ │ ├── SaveTooltipInformation.php │ │ │ │ ├── Tooltip.js │ │ │ │ ├── Tooltip.php │ │ │ │ ├── TooltipAjax.php │ │ │ │ ├── TooltipHandler.php │ │ │ │ ├── TooltipHeaderScript.js │ │ │ │ ├── TooltipSettings.js │ │ │ │ ├── TooltipUtils.php │ │ │ │ ├── index.php │ │ │ │ ├── language │ │ │ │ └── en_us.lang.php │ │ │ │ └── schema.xml │ │ └── templates │ │ │ ├── DetailQuickView.tpl │ │ │ ├── EditQuickView.tpl │ │ │ ├── Quickview.tpl │ │ │ └── default.tpl │ ├── Verteiler │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── Verteiler.php │ │ │ └── en_us │ │ │ │ └── Verteiler.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ ├── modules │ │ │ │ └── Verteiler │ │ │ │ │ ├── DetailViewHeaderTitle.tpl │ │ │ │ │ ├── DetailViewSummaryContents.tpl │ │ │ │ │ ├── ListViewContents.tpl │ │ │ │ │ ├── ModuleSummaryView.tpl │ │ │ │ │ ├── RelatedList.tpl │ │ │ │ │ ├── RelatedListVerteilerverwendung.tpl │ │ │ │ │ ├── VerteilerListOverlay.tpl │ │ │ │ │ ├── findDuplicatesMenu.tpl │ │ │ │ │ ├── resources │ │ │ │ │ ├── ContactList.js │ │ │ │ │ ├── Detail.js │ │ │ │ │ ├── List.js │ │ │ │ │ └── RelatedList.js │ │ │ │ │ ├── showCheckVerteilerEmails.tpl │ │ │ │ │ └── showExportOptions.tpl │ │ │ │ └── skins │ │ │ │ └── images │ │ │ │ ├── Verteiler.png │ │ │ │ └── summary_Verteiler.png │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Verteiler │ │ │ │ ├── Verteiler.php │ │ │ │ ├── actions │ │ │ │ ├── ExcelExport.php │ │ │ │ ├── RelationAjax.php │ │ │ │ ├── SaveAjax.php │ │ │ │ ├── deleteDuplicates.php │ │ │ │ └── exportDataToOtherModules.php │ │ │ │ ├── models │ │ │ │ ├── DetailView.php │ │ │ │ ├── ListView.php │ │ │ │ ├── Module.php │ │ │ │ ├── Record.php │ │ │ │ ├── Relation.php │ │ │ │ └── RelationListView.php │ │ │ │ ├── schema.xml │ │ │ │ └── views │ │ │ │ ├── Detail.php │ │ │ │ ├── RelatedList.php │ │ │ │ ├── VerteilerListOverlay.php │ │ │ │ ├── findDuplicatesMenuAjax.php │ │ │ │ ├── showCheckVerteilerEmails.php │ │ │ │ └── showExportOptions.php │ │ └── templates │ │ │ ├── DetailViewHeaderTitle.tpl │ │ │ ├── DetailViewSummaryContents.tpl │ │ │ ├── ListViewContents.tpl │ │ │ ├── ModuleSummaryView.tpl │ │ │ ├── RelatedList.tpl │ │ │ ├── RelatedListVerteilerverwendung.tpl │ │ │ ├── VerteilerListOverlay.tpl │ │ │ ├── findDuplicatesMenu.tpl │ │ │ ├── resources │ │ │ ├── ContactList.js │ │ │ ├── Detail.js │ │ │ ├── List.js │ │ │ └── RelatedList.js │ │ │ ├── showCheckVerteilerEmails.tpl │ │ │ └── showExportOptions.tpl │ ├── WSAPP │ │ ├── languages │ │ │ ├── WSAPP.php │ │ │ └── en_us │ │ │ │ └── WSAPP.php │ │ ├── manifest.xml │ │ └── modules │ │ │ └── WSAPP │ │ │ ├── Handlers │ │ │ ├── OutlookHandler.php │ │ │ ├── OutlookVtigerCRMHandler.php │ │ │ ├── SyncHandler.php │ │ │ └── vtigerCRMHandler.php │ │ │ ├── OutlookSyncServer.php │ │ │ ├── SyncServer.php │ │ │ ├── Utils.php │ │ │ ├── WSAPP.js │ │ │ ├── WSAPP.php │ │ │ ├── WSAPPAjax.php │ │ │ ├── WSAPPHandler.php │ │ │ ├── WorkFlowHandlers │ │ │ └── WSAPPAssignToTracker.php │ │ │ ├── api │ │ │ └── ws │ │ │ │ ├── DeRegister.php │ │ │ │ ├── Get.php │ │ │ │ ├── Map.php │ │ │ │ ├── Put.php │ │ │ │ └── Register.php │ │ │ ├── language │ │ │ └── en_us.lang.php │ │ │ └── synclib │ │ │ ├── connectors │ │ │ ├── BaseConnector.php │ │ │ ├── TargetConnector.php │ │ │ └── VtigerConnector.php │ │ │ ├── controllers │ │ │ └── SynchronizeController.php │ │ │ ├── handlers │ │ │ └── VtigerSyncEventHandler.php │ │ │ └── models │ │ │ ├── BaseModel.php │ │ │ ├── PullResultModel.php │ │ │ ├── SyncRecordModel.php │ │ │ ├── SyncStateModel.php │ │ │ ├── TargetModel.php │ │ │ └── VtigerModel.php │ ├── Webforms │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── Settings │ │ │ │ │ └── Webforms.php │ │ │ └── en_us │ │ │ │ └── Settings │ │ │ │ └── Webforms.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── Webforms │ │ │ │ ├── Webforms.config.php │ │ │ │ ├── Webforms.php │ │ │ │ ├── capture.php │ │ │ │ ├── config.captcha.php │ │ │ │ └── model │ │ │ │ ├── WebformsFieldModel.php │ │ │ │ └── WebformsModel.php │ │ └── settings │ │ │ ├── actions │ │ │ ├── CheckCaptcha.php │ │ │ ├── CheckDuplicate.php │ │ │ ├── Delete.php │ │ │ └── Save.php │ │ │ ├── models │ │ │ ├── Block.php │ │ │ ├── EditRecordStructure.php │ │ │ ├── Field.php │ │ │ ├── ListView.php │ │ │ ├── Module.php │ │ │ ├── ModuleField.php │ │ │ └── Record.php │ │ │ ├── templates │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── FieldsDetailView.tpl │ │ │ ├── FieldsEditView.tpl │ │ │ ├── ShowForm.tpl │ │ │ └── resources │ │ │ │ ├── Detail.js │ │ │ │ ├── Edit.js │ │ │ │ ├── Field.js │ │ │ │ └── List.js │ │ │ └── views │ │ │ ├── Detail.php │ │ │ ├── Edit.php │ │ │ ├── GetSourceModuleFields.php │ │ │ ├── List.php │ │ │ └── ShowForm.php │ ├── berliCleverReach │ │ ├── languages │ │ │ ├── de_de │ │ │ │ ├── Settings │ │ │ │ │ └── berliCleverReach.php │ │ │ │ └── berliCleverReach.php │ │ │ └── en_us │ │ │ │ ├── Settings │ │ │ │ └── berliCleverReach.php │ │ │ │ └── berliCleverReach.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ ├── modules │ │ │ │ └── berliCleverReach │ │ │ │ │ ├── DetailViewFullContents.tpl │ │ │ │ │ ├── GroupSyncFooter.tpl │ │ │ │ │ ├── RelatedList.tpl │ │ │ │ │ ├── resources │ │ │ │ │ ├── Detail.js │ │ │ │ │ ├── List.js │ │ │ │ │ ├── RelatedList.js │ │ │ │ │ └── berliCleverReach.js │ │ │ │ │ └── showGroupOverlay.tpl │ │ │ │ └── skins │ │ │ │ └── images │ │ │ │ └── berliCleverReach.png │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── berliCleverReach │ │ │ │ ├── actions │ │ │ │ ├── DetailAjax.php │ │ │ │ ├── RelationAjax.php │ │ │ │ └── berliCleverReachStepController.php │ │ │ │ ├── berliCleverReach.php │ │ │ │ ├── models │ │ │ │ ├── DetailView.php │ │ │ │ ├── Module.php │ │ │ │ ├── Record.php │ │ │ │ ├── Relation.php │ │ │ │ └── RelationListView.php │ │ │ │ ├── providers │ │ │ │ ├── cleverreach.php │ │ │ │ └── rest_client.php │ │ │ │ ├── schema.xml │ │ │ │ └── views │ │ │ │ ├── Detail.php │ │ │ │ ├── ListView.php │ │ │ │ ├── RelatedList.php │ │ │ │ └── showGroupOverlay.php │ │ ├── settings │ │ │ ├── actions │ │ │ │ └── saveberliCleverReachSettings.php │ │ │ ├── models │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ ├── templates │ │ │ │ ├── berliCleverReachSettings.tpl │ │ │ │ ├── resources │ │ │ │ │ └── Index.js │ │ │ │ └── widgets │ │ │ │ │ └── DetailViewBlockberliCleverReach.tpl │ │ │ └── views │ │ │ │ └── Index.php │ │ └── templates │ │ │ ├── DetailViewFullContents.tpl │ │ │ ├── GroupSyncFooter.tpl │ │ │ ├── RelatedList.tpl │ │ │ ├── resources │ │ │ ├── Detail.js │ │ │ ├── List.js │ │ │ ├── RelatedList.js │ │ │ └── berliCleverReach.js │ │ │ └── showGroupOverlay.tpl │ ├── berliSoftphones │ │ ├── languages │ │ │ ├── de_de │ │ │ │ ├── Settings │ │ │ │ │ └── berliSoftphones.php │ │ │ │ └── berliSoftphones.php │ │ │ └── en_us │ │ │ │ ├── Settings │ │ │ │ └── berliSoftphones.php │ │ │ │ └── berliSoftphones.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ └── modules │ │ │ │ ├── Settings │ │ │ │ └── berliSoftphones │ │ │ │ │ ├── index.tpl │ │ │ │ │ └── resources │ │ │ │ │ └── Index.js │ │ │ │ └── berliSoftphones │ │ │ │ ├── BasicHeader.tpl │ │ │ │ └── showCallers.tpl │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── berliSoftphones │ │ │ │ ├── actions │ │ │ │ └── ListPhone.php │ │ │ │ ├── berliSoftphones.php │ │ │ │ ├── models │ │ │ │ ├── ListView.php │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ │ └── views │ │ │ │ └── List.php │ │ ├── settings │ │ │ ├── actions │ │ │ │ └── setSoftphone.php │ │ │ ├── models │ │ │ │ ├── Module.php │ │ │ │ └── Record.php │ │ │ ├── templates │ │ │ │ ├── index.tpl │ │ │ │ └── resources │ │ │ │ │ └── Index.js │ │ │ └── views │ │ │ │ └── Index.php │ │ └── templates │ │ │ ├── BasicHeader.tpl │ │ │ └── showCallers.tpl │ ├── berliWidgets │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── berliWidgets.php │ │ │ └── en_us │ │ │ │ └── berliWidgets.php │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── berliWidgets │ │ │ │ ├── actions │ │ │ │ └── saveDroppedDocument.php │ │ │ │ ├── berliWidgets.php │ │ │ │ ├── berliWidgetsAjax.php │ │ │ │ ├── berliWidgetsHandler.php │ │ │ │ ├── index.php │ │ │ │ └── views │ │ │ │ ├── dropDocument.php │ │ │ │ └── relatedDocumentEntries.php │ │ └── templates │ │ │ ├── resources │ │ │ └── Detail.js │ │ │ ├── showDocumentDropMenu.tpl │ │ │ └── showRelatedDocumentEntries.tpl │ ├── berlimap │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── berlimap.php │ │ │ └── en_us │ │ │ │ └── berlimap.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ └── modules │ │ │ │ └── berlimap │ │ │ │ ├── inactiveError.tpl │ │ │ │ ├── index.tpl │ │ │ │ └── resources │ │ │ │ ├── List.js │ │ │ │ ├── css │ │ │ │ └── ol.css │ │ │ │ └── ol.js │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── berlimap │ │ │ │ ├── actions │ │ │ │ ├── ListAjax.php │ │ │ │ └── getFurtherDataToDisplay.php │ │ │ │ ├── berlimap.php │ │ │ │ ├── icons │ │ │ │ ├── Icon1.png │ │ │ │ ├── Icon10.png │ │ │ │ ├── Icon2.png │ │ │ │ ├── Icon3.png │ │ │ │ ├── Icon4.png │ │ │ │ ├── Icon5.png │ │ │ │ ├── Icon6.png │ │ │ │ ├── Icon7.png │ │ │ │ ├── Icon8.png │ │ │ │ ├── Icon9.png │ │ │ │ ├── blue-dot.png │ │ │ │ ├── blueIcon.png │ │ │ │ ├── dot-shadow.png │ │ │ │ └── red-dot.png │ │ │ │ ├── lib │ │ │ │ └── GeoCoder.inc.php │ │ │ │ └── views │ │ │ │ └── List.php │ │ └── templates │ │ │ ├── inactiveError.tpl │ │ │ ├── index.tpl │ │ │ └── resources │ │ │ ├── List.js │ │ │ ├── css │ │ │ └── ol.css │ │ │ └── ol.js │ ├── crmtogo │ │ ├── languages │ │ │ ├── de_de │ │ │ │ └── crmtogo.php │ │ │ ├── en_us │ │ │ │ └── crmtogo.php │ │ │ ├── es_es │ │ │ │ └── crmtogo.php │ │ │ ├── fr_fr │ │ │ │ └── crmtogo.php │ │ │ ├── ja_jp │ │ │ │ └── crmtogo.php │ │ │ └── nl_nl │ │ │ │ └── crmtogo.php │ │ ├── layouts │ │ │ └── vlayout │ │ │ │ └── modules │ │ │ │ └── crmtogo │ │ │ │ ├── Comments.tpl │ │ │ │ ├── Config.tpl │ │ │ │ ├── DetailView.tpl │ │ │ │ ├── EditView.tpl │ │ │ │ ├── Error.tpl │ │ │ │ ├── GlobalSearch.tpl │ │ │ │ ├── Header.tpl │ │ │ │ ├── Home.tpl │ │ │ │ ├── ListView.tpl │ │ │ │ ├── Login.tpl │ │ │ │ ├── PanelMenu.tpl │ │ │ │ ├── RelatedListView.tpl │ │ │ │ ├── Signature.tpl │ │ │ │ ├── Unsupported.tpl │ │ │ │ ├── decideActivityType.tpl │ │ │ │ ├── deleteConfirmation.tpl │ │ │ │ └── resources │ │ │ │ ├── crmtogo.js │ │ │ │ ├── css │ │ │ │ ├── custom-icons │ │ │ │ │ ├── Accounts.png │ │ │ │ │ ├── Assets.png │ │ │ │ │ ├── Calendar.png │ │ │ │ │ ├── Contacts.png │ │ │ │ │ ├── Documents.png │ │ │ │ │ ├── Faq.png │ │ │ │ │ ├── HelpDesk.png │ │ │ │ │ ├── Invoice.png │ │ │ │ │ ├── Leads.png │ │ │ │ │ ├── Potentials.png │ │ │ │ │ ├── Products.png │ │ │ │ │ ├── Project.png │ │ │ │ │ ├── ProjectMilestone.png │ │ │ │ │ ├── ProjectTask.png │ │ │ │ │ ├── Quotes.png │ │ │ │ │ ├── SalesOrder.png │ │ │ │ │ ├── Vendors.png │ │ │ │ │ ├── Vtiger.png │ │ │ │ │ ├── custom_icons.css │ │ │ │ │ └── facturas.png │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.mobile-1.4.5.min.css │ │ │ │ ├── jquery.mobile.icons.min.css │ │ │ │ ├── jquery.mobile.structure-1.4.5.min.css │ │ │ │ ├── jw-jqm-cal.css │ │ │ │ ├── jw-jqm-cal.ios7.css │ │ │ │ ├── mobiscroll.custom-2.6.2.min.css │ │ │ │ ├── signature-pad.css │ │ │ │ ├── style.css │ │ │ │ ├── theme.css │ │ │ │ └── tinyselect.css │ │ │ │ ├── getScrollcontent.js │ │ │ │ ├── images │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── ajax-loader.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── icons-18-black.png │ │ │ │ ├── icons-18-white.png │ │ │ │ ├── icons-36-black.png │ │ │ │ ├── icons-36-white.png │ │ │ │ ├── icons-png │ │ │ │ │ ├── action-black.png │ │ │ │ │ ├── action-white.png │ │ │ │ │ ├── alert-black.png │ │ │ │ │ ├── alert-white.png │ │ │ │ │ ├── arrow-d-black.png │ │ │ │ │ ├── arrow-d-l-black.png │ │ │ │ │ ├── arrow-d-l-white.png │ │ │ │ │ ├── arrow-d-r-black.png │ │ │ │ │ ├── arrow-d-r-white.png │ │ │ │ │ ├── arrow-d-white.png │ │ │ │ │ ├── arrow-l-black.png │ │ │ │ │ ├── arrow-l-white.png │ │ │ │ │ ├── arrow-r-black.png │ │ │ │ │ ├── arrow-r-white.png │ │ │ │ │ ├── arrow-u-black.png │ │ │ │ │ ├── arrow-u-l-black.png │ │ │ │ │ ├── arrow-u-l-white.png │ │ │ │ │ ├── arrow-u-r-black.png │ │ │ │ │ ├── arrow-u-r-white.png │ │ │ │ │ ├── arrow-u-white.png │ │ │ │ │ ├── audio-black.png │ │ │ │ │ ├── audio-white.png │ │ │ │ │ ├── back-black.png │ │ │ │ │ ├── back-white.png │ │ │ │ │ ├── bars-black.png │ │ │ │ │ ├── bars-white.png │ │ │ │ │ ├── bullets-black.png │ │ │ │ │ ├── bullets-white.png │ │ │ │ │ ├── calendar-black.png │ │ │ │ │ ├── calendar-white.png │ │ │ │ │ ├── camera-black.png │ │ │ │ │ ├── camera-white.png │ │ │ │ │ ├── carat-d-black.png │ │ │ │ │ ├── carat-d-white.png │ │ │ │ │ ├── carat-l-black.png │ │ │ │ │ ├── carat-l-white.png │ │ │ │ │ ├── carat-r-black.png │ │ │ │ │ ├── carat-r-white.png │ │ │ │ │ ├── carat-u-black.png │ │ │ │ │ ├── carat-u-white.png │ │ │ │ │ ├── check-black.png │ │ │ │ │ ├── check-white.png │ │ │ │ │ ├── clock-black.png │ │ │ │ │ ├── clock-white.png │ │ │ │ │ ├── cloud-black.png │ │ │ │ │ ├── cloud-white.png │ │ │ │ │ ├── comment-black.png │ │ │ │ │ ├── comment-white.png │ │ │ │ │ ├── delete-black.png │ │ │ │ │ ├── delete-white.png │ │ │ │ │ ├── edit-black.png │ │ │ │ │ ├── edit-white.png │ │ │ │ │ ├── eye-black.png │ │ │ │ │ ├── eye-white.png │ │ │ │ │ ├── forbidden-black.png │ │ │ │ │ ├── forbidden-white.png │ │ │ │ │ ├── forward-black.png │ │ │ │ │ ├── forward-white.png │ │ │ │ │ ├── gear-black.png │ │ │ │ │ ├── gear-white.png │ │ │ │ │ ├── grid-black.png │ │ │ │ │ ├── grid-white.png │ │ │ │ │ ├── heart-black.png │ │ │ │ │ ├── heart-white.png │ │ │ │ │ ├── home-black.png │ │ │ │ │ ├── home-white.png │ │ │ │ │ ├── info-black.png │ │ │ │ │ ├── info-white.png │ │ │ │ │ ├── location-black.png │ │ │ │ │ ├── location-white.png │ │ │ │ │ ├── lock-black.png │ │ │ │ │ ├── lock-white.png │ │ │ │ │ ├── mail-black.png │ │ │ │ │ ├── mail-white.png │ │ │ │ │ ├── minus-black.png │ │ │ │ │ ├── minus-white.png │ │ │ │ │ ├── navigation-black.png │ │ │ │ │ ├── navigation-white.png │ │ │ │ │ ├── phone-black.png │ │ │ │ │ ├── phone-white.png │ │ │ │ │ ├── plus-black.png │ │ │ │ │ ├── plus-white.png │ │ │ │ │ ├── power-black.png │ │ │ │ │ ├── power-white.png │ │ │ │ │ ├── recycle-black.png │ │ │ │ │ ├── recycle-white.png │ │ │ │ │ ├── refresh-black.png │ │ │ │ │ ├── refresh-white.png │ │ │ │ │ ├── search-black.png │ │ │ │ │ ├── search-white.png │ │ │ │ │ ├── shop-black.png │ │ │ │ │ ├── shop-white.png │ │ │ │ │ ├── star-black.png │ │ │ │ │ ├── star-white.png │ │ │ │ │ ├── tag-black.png │ │ │ │ │ ├── tag-white.png │ │ │ │ │ ├── user-black.png │ │ │ │ │ ├── user-white.png │ │ │ │ │ ├── video-black.png │ │ │ │ │ └── video-white.png │ │ │ │ ├── icons-svg │ │ │ │ │ ├── action-black.svg │ │ │ │ │ ├── action-white.svg │ │ │ │ │ ├── alert-black.svg │ │ │ │ │ ├── alert-white.svg │ │ │ │ │ ├── arrow-d-black.svg │ │ │ │ │ ├── arrow-d-l-black.svg │ │ │ │ │ ├── arrow-d-l-white.svg │ │ │ │ │ ├── arrow-d-r-black.svg │ │ │ │ │ ├── arrow-d-r-white.svg │ │ │ │ │ ├── arrow-d-white.svg │ │ │ │ │ ├── arrow-l-black.svg │ │ │ │ │ ├── arrow-l-white.svg │ │ │ │ │ ├── arrow-r-black.svg │ │ │ │ │ ├── arrow-r-white.svg │ │ │ │ │ ├── arrow-u-black.svg │ │ │ │ │ ├── arrow-u-l-black.svg │ │ │ │ │ ├── arrow-u-l-white.svg │ │ │ │ │ ├── arrow-u-r-black.svg │ │ │ │ │ ├── arrow-u-r-white.svg │ │ │ │ │ ├── arrow-u-white.svg │ │ │ │ │ ├── audio-black.svg │ │ │ │ │ ├── audio-white.svg │ │ │ │ │ ├── back-black.svg │ │ │ │ │ ├── back-white.svg │ │ │ │ │ ├── bars-black.svg │ │ │ │ │ ├── bars-white.svg │ │ │ │ │ ├── bullets-black.svg │ │ │ │ │ ├── bullets-white.svg │ │ │ │ │ ├── calendar-black.svg │ │ │ │ │ ├── calendar-white.svg │ │ │ │ │ ├── camera-black.svg │ │ │ │ │ ├── camera-white.svg │ │ │ │ │ ├── carat-d-black.svg │ │ │ │ │ ├── carat-d-white.svg │ │ │ │ │ ├── carat-l-black.svg │ │ │ │ │ ├── carat-l-white.svg │ │ │ │ │ ├── carat-r-black.svg │ │ │ │ │ ├── carat-r-white.svg │ │ │ │ │ ├── carat-u-black.svg │ │ │ │ │ ├── carat-u-white.svg │ │ │ │ │ ├── check-black.svg │ │ │ │ │ ├── check-white.svg │ │ │ │ │ ├── clock-black.svg │ │ │ │ │ ├── clock-white.svg │ │ │ │ │ ├── cloud-black.svg │ │ │ │ │ ├── cloud-white.svg │ │ │ │ │ ├── comment-black.svg │ │ │ │ │ ├── comment-white.svg │ │ │ │ │ ├── delete-black.svg │ │ │ │ │ ├── delete-white.svg │ │ │ │ │ ├── edit-black.svg │ │ │ │ │ ├── edit-white.svg │ │ │ │ │ ├── eye-black.svg │ │ │ │ │ ├── eye-white.svg │ │ │ │ │ ├── forbidden-black.svg │ │ │ │ │ ├── forbidden-white.svg │ │ │ │ │ ├── forward-black.svg │ │ │ │ │ ├── forward-white.svg │ │ │ │ │ ├── gear-black.svg │ │ │ │ │ ├── gear-white.svg │ │ │ │ │ ├── grid-black.svg │ │ │ │ │ ├── grid-white.svg │ │ │ │ │ ├── heart-black.svg │ │ │ │ │ ├── heart-white.svg │ │ │ │ │ ├── home-black.svg │ │ │ │ │ ├── home-white.svg │ │ │ │ │ ├── info-black.svg │ │ │ │ │ ├── info-white.svg │ │ │ │ │ ├── location-black.svg │ │ │ │ │ ├── location-white.svg │ │ │ │ │ ├── lock-black.svg │ │ │ │ │ ├── lock-white.svg │ │ │ │ │ ├── mail-black.svg │ │ │ │ │ ├── mail-white.svg │ │ │ │ │ ├── minus-black.svg │ │ │ │ │ ├── minus-white.svg │ │ │ │ │ ├── navigation-black.svg │ │ │ │ │ ├── navigation-white.svg │ │ │ │ │ ├── phone-black.svg │ │ │ │ │ ├── phone-white.svg │ │ │ │ │ ├── plus-black.svg │ │ │ │ │ ├── plus-white.svg │ │ │ │ │ ├── power-black.svg │ │ │ │ │ ├── power-white.svg │ │ │ │ │ ├── recycle-black.svg │ │ │ │ │ ├── recycle-white.svg │ │ │ │ │ ├── refresh-black.svg │ │ │ │ │ ├── refresh-white.svg │ │ │ │ │ ├── search-black.svg │ │ │ │ │ ├── search-white.svg │ │ │ │ │ ├── shop-black.svg │ │ │ │ │ ├── shop-white.svg │ │ │ │ │ ├── star-black.svg │ │ │ │ │ ├── star-white.svg │ │ │ │ │ ├── tag-black.svg │ │ │ │ │ ├── tag-white.svg │ │ │ │ │ ├── user-black.svg │ │ │ │ │ ├── user-white.svg │ │ │ │ │ ├── video-black.svg │ │ │ │ │ └── video-white.svg │ │ │ │ └── images.png │ │ │ │ ├── jquery-1.11.2.min.js │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery.easing-1.3.min.js │ │ │ │ ├── jquery.mobile-1.4.5.min.js │ │ │ │ ├── jw-jqm-cal.js │ │ │ │ ├── lang │ │ │ │ ├── de_de.lang.js │ │ │ │ ├── en_us.lang.js │ │ │ │ ├── es_es.lang.js │ │ │ │ ├── fr_fr.lang.js │ │ │ │ ├── ja_jp.lang.js │ │ │ │ └── nl_nl.lang.js │ │ │ │ ├── settings.js │ │ │ │ ├── signature_pad.js │ │ │ │ └── xdate.js │ │ ├── manifest.xml │ │ ├── modules │ │ │ └── crmtogo │ │ │ │ ├── actions │ │ │ │ ├── changeGUISettings.php │ │ │ │ ├── getFileForDownload.php │ │ │ │ ├── getRelatedFieldAjax.php │ │ │ │ └── getScrollContent.php │ │ │ │ ├── api │ │ │ │ ├── Relation.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Session.php │ │ │ │ └── ws │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── DeleteRecords.php │ │ │ │ │ ├── Describe.php │ │ │ │ │ ├── FetchModuleFilters.php │ │ │ │ │ ├── FetchRecord.php │ │ │ │ │ ├── FetchRecordDetails.php │ │ │ │ │ ├── FilterDetailsWithCount.php │ │ │ │ │ ├── ListModuleRecords.php │ │ │ │ │ ├── Login.php │ │ │ │ │ ├── LoginAndFetchModules.php │ │ │ │ │ ├── Query.php │ │ │ │ │ ├── QueryWithGrouping.php │ │ │ │ │ ├── RelatedRecords.php │ │ │ │ │ ├── SaveRecord.php │ │ │ │ │ ├── Utils.php │ │ │ │ │ ├── addComment.php │ │ │ │ │ ├── editConfiguration.php │ │ │ │ │ ├── getScrollContent.php │ │ │ │ │ ├── models │ │ │ │ │ ├── Field.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ └── SearchFilter.php │ │ │ │ │ └── saveSignature.php │ │ │ │ ├── before_you_install_readme.txt │ │ │ │ ├── crmtogo-README │ │ │ │ ├── crmtogo.php │ │ │ │ ├── index.php │ │ │ │ └── views │ │ │ │ ├── DetailView.php │ │ │ │ ├── EditView.php │ │ │ │ ├── Error.php │ │ │ │ ├── ListGlobalSearchResults.php │ │ │ │ ├── ListModuleRecords.php │ │ │ │ ├── Login.php │ │ │ │ ├── LoginAndFetchModules.php │ │ │ │ ├── Logout.php │ │ │ │ ├── SaveRecord.php │ │ │ │ ├── Viewer.php │ │ │ │ ├── addComment.php │ │ │ │ ├── createActivity.php │ │ │ │ ├── deleteConfirmation.php │ │ │ │ ├── editConfiguration.php │ │ │ │ ├── getRelationList.php │ │ │ │ ├── models │ │ │ │ ├── Block.php │ │ │ │ ├── Field.php │ │ │ │ ├── Module.php │ │ │ │ ├── ModuleRecord.php │ │ │ │ └── SearchFilter.php │ │ │ │ └── saveSignature.php │ │ └── templates │ │ │ ├── Comments.tpl │ │ │ ├── Config.tpl │ │ │ ├── DetailView.tpl │ │ │ ├── EditView.tpl │ │ │ ├── Error.tpl │ │ │ ├── GlobalSearch.tpl │ │ │ ├── Header.tpl │ │ │ ├── Home.tpl │ │ │ ├── ListView.tpl │ │ │ ├── Login.tpl │ │ │ ├── PanelMenu.tpl │ │ │ ├── RelatedListView.tpl │ │ │ ├── Signature.tpl │ │ │ ├── Unsupported.tpl │ │ │ ├── decideActivityType.tpl │ │ │ ├── deleteConfirmation.tpl │ │ │ └── resources │ │ │ ├── crmtogo.js │ │ │ ├── css │ │ │ ├── custom-icons │ │ │ │ ├── Accounts.png │ │ │ │ ├── Assets.png │ │ │ │ ├── Calendar.png │ │ │ │ ├── Contacts.png │ │ │ │ ├── Documents.png │ │ │ │ ├── Faq.png │ │ │ │ ├── HelpDesk.png │ │ │ │ ├── Leads.png │ │ │ │ ├── Potentials.png │ │ │ │ ├── Quotes.png │ │ │ │ ├── SalesOrder.png │ │ │ │ ├── Vendors.png │ │ │ │ ├── Vtiger.png │ │ │ │ ├── custom_icons.css │ │ │ │ └── facturas.png │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.mobile-1.4.5.min.css │ │ │ ├── jquery.mobile.icons.min.css │ │ │ ├── jquery.mobile.structure-1.4.5.min.css │ │ │ ├── jw-jqm-cal.css │ │ │ ├── jw-jqm-cal.ios7.css │ │ │ ├── mobiscroll.custom-2.6.2.min.css │ │ │ ├── signature-pad.css │ │ │ ├── style.css │ │ │ ├── theme.css │ │ │ └── tinyselect.css │ │ │ ├── getScrollcontent.js │ │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── ajax-loader.png │ │ │ ├── favicon.ico │ │ │ ├── icons-18-black.png │ │ │ ├── icons-18-white.png │ │ │ ├── icons-36-black.png │ │ │ ├── icons-36-white.png │ │ │ ├── icons-png │ │ │ │ ├── action-black.png │ │ │ │ ├── action-white.png │ │ │ │ ├── alert-black.png │ │ │ │ ├── alert-white.png │ │ │ │ ├── arrow-d-black.png │ │ │ │ ├── arrow-d-l-black.png │ │ │ │ ├── arrow-d-l-white.png │ │ │ │ ├── arrow-d-r-black.png │ │ │ │ ├── arrow-d-r-white.png │ │ │ │ ├── arrow-d-white.png │ │ │ │ ├── arrow-l-black.png │ │ │ │ ├── arrow-l-white.png │ │ │ │ ├── arrow-r-black.png │ │ │ │ ├── arrow-r-white.png │ │ │ │ ├── arrow-u-black.png │ │ │ │ ├── arrow-u-l-black.png │ │ │ │ ├── arrow-u-l-white.png │ │ │ │ ├── arrow-u-r-black.png │ │ │ │ ├── arrow-u-r-white.png │ │ │ │ ├── arrow-u-white.png │ │ │ │ ├── audio-black.png │ │ │ │ ├── audio-white.png │ │ │ │ ├── back-black.png │ │ │ │ ├── back-white.png │ │ │ │ ├── bars-black.png │ │ │ │ ├── bars-white.png │ │ │ │ ├── bullets-black.png │ │ │ │ ├── bullets-white.png │ │ │ │ ├── calendar-black.png │ │ │ │ ├── calendar-white.png │ │ │ │ ├── camera-black.png │ │ │ │ ├── camera-white.png │ │ │ │ ├── carat-d-black.png │ │ │ │ ├── carat-d-white.png │ │ │ │ ├── carat-l-black.png │ │ │ │ ├── carat-l-white.png │ │ │ │ ├── carat-r-black.png │ │ │ │ ├── carat-r-white.png │ │ │ │ ├── carat-u-black.png │ │ │ │ ├── carat-u-white.png │ │ │ │ ├── check-black.png │ │ │ │ ├── check-white.png │ │ │ │ ├── clock-black.png │ │ │ │ ├── clock-white.png │ │ │ │ ├── cloud-black.png │ │ │ │ ├── cloud-white.png │ │ │ │ ├── comment-black.png │ │ │ │ ├── comment-white.png │ │ │ │ ├── delete-black.png │ │ │ │ ├── delete-white.png │ │ │ │ ├── edit-black.png │ │ │ │ ├── edit-white.png │ │ │ │ ├── eye-black.png │ │ │ │ ├── eye-white.png │ │ │ │ ├── forbidden-black.png │ │ │ │ ├── forbidden-white.png │ │ │ │ ├── forward-black.png │ │ │ │ ├── forward-white.png │ │ │ │ ├── gear-black.png │ │ │ │ ├── gear-white.png │ │ │ │ ├── grid-black.png │ │ │ │ ├── grid-white.png │ │ │ │ ├── heart-black.png │ │ │ │ ├── heart-white.png │ │ │ │ ├── home-black.png │ │ │ │ ├── home-white.png │ │ │ │ ├── info-black.png │ │ │ │ ├── info-white.png │ │ │ │ ├── location-black.png │ │ │ │ ├── location-white.png │ │ │ │ ├── lock-black.png │ │ │ │ ├── lock-white.png │ │ │ │ ├── mail-black.png │ │ │ │ ├── mail-white.png │ │ │ │ ├── minus-black.png │ │ │ │ ├── minus-white.png │ │ │ │ ├── navigation-black.png │ │ │ │ ├── navigation-white.png │ │ │ │ ├── phone-black.png │ │ │ │ ├── phone-white.png │ │ │ │ ├── plus-black.png │ │ │ │ ├── plus-white.png │ │ │ │ ├── power-black.png │ │ │ │ ├── power-white.png │ │ │ │ ├── recycle-black.png │ │ │ │ ├── recycle-white.png │ │ │ │ ├── refresh-black.png │ │ │ │ ├── refresh-white.png │ │ │ │ ├── search-black.png │ │ │ │ ├── search-white.png │ │ │ │ ├── shop-black.png │ │ │ │ ├── shop-white.png │ │ │ │ ├── star-black.png │ │ │ │ ├── star-white.png │ │ │ │ ├── tag-black.png │ │ │ │ ├── tag-white.png │ │ │ │ ├── user-black.png │ │ │ │ ├── user-white.png │ │ │ │ ├── video-black.png │ │ │ │ └── video-white.png │ │ │ ├── icons-svg │ │ │ │ ├── action-black.svg │ │ │ │ ├── action-white.svg │ │ │ │ ├── alert-black.svg │ │ │ │ ├── alert-white.svg │ │ │ │ ├── arrow-d-black.svg │ │ │ │ ├── arrow-d-l-black.svg │ │ │ │ ├── arrow-d-l-white.svg │ │ │ │ ├── arrow-d-r-black.svg │ │ │ │ ├── arrow-d-r-white.svg │ │ │ │ ├── arrow-d-white.svg │ │ │ │ ├── arrow-l-black.svg │ │ │ │ ├── arrow-l-white.svg │ │ │ │ ├── arrow-r-black.svg │ │ │ │ ├── arrow-r-white.svg │ │ │ │ ├── arrow-u-black.svg │ │ │ │ ├── arrow-u-l-black.svg │ │ │ │ ├── arrow-u-l-white.svg │ │ │ │ ├── arrow-u-r-black.svg │ │ │ │ ├── arrow-u-r-white.svg │ │ │ │ ├── arrow-u-white.svg │ │ │ │ ├── audio-black.svg │ │ │ │ ├── audio-white.svg │ │ │ │ ├── back-black.svg │ │ │ │ ├── back-white.svg │ │ │ │ ├── bars-black.svg │ │ │ │ ├── bars-white.svg │ │ │ │ ├── bullets-black.svg │ │ │ │ ├── bullets-white.svg │ │ │ │ ├── calendar-black.svg │ │ │ │ ├── calendar-white.svg │ │ │ │ ├── camera-black.svg │ │ │ │ ├── camera-white.svg │ │ │ │ ├── carat-d-black.svg │ │ │ │ ├── carat-d-white.svg │ │ │ │ ├── carat-l-black.svg │ │ │ │ ├── carat-l-white.svg │ │ │ │ ├── carat-r-black.svg │ │ │ │ ├── carat-r-white.svg │ │ │ │ ├── carat-u-black.svg │ │ │ │ ├── carat-u-white.svg │ │ │ │ ├── check-black.svg │ │ │ │ ├── check-white.svg │ │ │ │ ├── clock-black.svg │ │ │ │ ├── clock-white.svg │ │ │ │ ├── cloud-black.svg │ │ │ │ ├── cloud-white.svg │ │ │ │ ├── comment-black.svg │ │ │ │ ├── comment-white.svg │ │ │ │ ├── delete-black.svg │ │ │ │ ├── delete-white.svg │ │ │ │ ├── edit-black.svg │ │ │ │ ├── edit-white.svg │ │ │ │ ├── eye-black.svg │ │ │ │ ├── eye-white.svg │ │ │ │ ├── forbidden-black.svg │ │ │ │ ├── forbidden-white.svg │ │ │ │ ├── forward-black.svg │ │ │ │ ├── forward-white.svg │ │ │ │ ├── gear-black.svg │ │ │ │ ├── gear-white.svg │ │ │ │ ├── grid-black.svg │ │ │ │ ├── grid-white.svg │ │ │ │ ├── heart-black.svg │ │ │ │ ├── heart-white.svg │ │ │ │ ├── home-black.svg │ │ │ │ ├── home-white.svg │ │ │ │ ├── info-black.svg │ │ │ │ ├── info-white.svg │ │ │ │ ├── location-black.svg │ │ │ │ ├── location-white.svg │ │ │ │ ├── lock-black.svg │ │ │ │ ├── lock-white.svg │ │ │ │ ├── mail-black.svg │ │ │ │ ├── mail-white.svg │ │ │ │ ├── minus-black.svg │ │ │ │ ├── minus-white.svg │ │ │ │ ├── navigation-black.svg │ │ │ │ ├── navigation-white.svg │ │ │ │ ├── phone-black.svg │ │ │ │ ├── phone-white.svg │ │ │ │ ├── plus-black.svg │ │ │ │ ├── plus-white.svg │ │ │ │ ├── power-black.svg │ │ │ │ ├── power-white.svg │ │ │ │ ├── recycle-black.svg │ │ │ │ ├── recycle-white.svg │ │ │ │ ├── refresh-black.svg │ │ │ │ ├── refresh-white.svg │ │ │ │ ├── search-black.svg │ │ │ │ ├── search-white.svg │ │ │ │ ├── shop-black.svg │ │ │ │ ├── shop-white.svg │ │ │ │ ├── star-black.svg │ │ │ │ ├── star-white.svg │ │ │ │ ├── tag-black.svg │ │ │ │ ├── tag-white.svg │ │ │ │ ├── user-black.svg │ │ │ │ ├── user-white.svg │ │ │ │ ├── video-black.svg │ │ │ │ └── video-white.svg │ │ │ └── images.png │ │ │ ├── jquery-1.11.2.min.js │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.easing-1.3.min.js │ │ │ ├── jquery.mobile-1.4.5.min.js │ │ │ ├── jw-jqm-cal.js │ │ │ ├── lang │ │ │ ├── de_de.lang.js │ │ │ ├── en_us.lang.js │ │ │ ├── es_es.lang.js │ │ │ ├── fr_fr.lang.js │ │ │ ├── ja_jp.lang.js │ │ │ └── nl_nl.lang.js │ │ │ ├── settings.js │ │ │ ├── signature_pad.js │ │ │ └── xdate.js │ └── gdpr │ │ ├── cron │ │ └── Scanner.service │ │ ├── languages │ │ ├── de_de │ │ │ ├── Settings │ │ │ │ └── gdpr.php │ │ │ └── gdpr.php │ │ └── en_us │ │ │ ├── Settings │ │ │ └── gdpr.php │ │ │ └── gdpr.php │ │ ├── layouts │ │ └── vlayout │ │ │ └── modules │ │ │ └── gdpr │ │ │ ├── DetailViewSummaryContents.tpl │ │ │ └── ModuleSummaryView.tpl │ │ ├── manifest.xml │ │ ├── modules │ │ └── gdpr │ │ │ ├── actions │ │ │ └── printgdpr.php │ │ │ ├── gdpr.php │ │ │ ├── gdpr_templates │ │ │ ├── body.php │ │ │ └── header.php │ │ │ └── models │ │ │ ├── DetailView.php │ │ │ └── Field.php │ │ ├── settings │ │ ├── actions │ │ │ ├── saveFields.php │ │ │ └── setGdprParameter.php │ │ ├── models │ │ │ ├── Module.php │ │ │ └── Record.php │ │ ├── templates │ │ │ ├── index.tpl │ │ │ └── resources │ │ │ │ └── Index.js │ │ └── views │ │ │ └── Index.php │ │ └── templates │ │ ├── DetailViewSummaryContents.tpl │ │ └── ModuleSummaryView.tpl │ └── translations │ └── Deutsch │ ├── cron │ └── language │ │ └── phpmailer.lang-de.php │ ├── manifest.xml │ └── modules │ ├── Accounts.php │ ├── Assets.php │ ├── Calendar.php │ ├── Campaigns.php │ ├── Contacts.php │ ├── Documents.php │ ├── EmailTemplates.php │ ├── Emails.php │ ├── Events.php │ ├── Faq.php │ ├── HelpDesk.php │ ├── Home.php │ ├── Import.php │ ├── Install.php │ ├── Invoice.php │ ├── Leads.php │ ├── MailManager.php │ ├── Mailchimp.php │ ├── Migration.php │ ├── Mobile.php │ ├── ModComments.php │ ├── ModTracker.php │ ├── PBXManager.php │ ├── Portal.php │ ├── Potentials.php │ ├── PriceBooks.php │ ├── Products.php │ ├── Project.php │ ├── ProjectMilestone.php │ ├── ProjectTask.php │ ├── PurchaseOrder.php │ ├── Quotes.php │ ├── RecycleBin.php │ ├── Reports.php │ ├── Rss.php │ ├── SMSNotifier.php │ ├── SalesOrder.php │ ├── ServiceContracts.php │ ├── Services.php │ ├── Settings │ ├── Accounts.php │ ├── CronTasks.php │ ├── Currency.php │ ├── CustomerPortal.php │ ├── EmailTemplate.php │ ├── EmailTemplates.php │ ├── Groups.php │ ├── LayoutEditor.php │ ├── Leads.php │ ├── MailConverter.php │ ├── ModuleManager.php │ ├── PBXManager.php │ ├── PickListDependency.php │ ├── Picklist.php │ ├── Profiles.php │ ├── Roles.php │ ├── SMSNotifier.php │ ├── SharingAccess.php │ ├── Vtiger.php │ ├── Webforms.php │ └── Workflows.php │ ├── Users.php │ ├── Vendors.php │ ├── Vtiger.php │ ├── WSAPP.php │ └── Webservices.php ├── requestPasswordReset.php ├── resources ├── Connector.js ├── ProgressIndicator.js ├── app.js ├── fonts │ ├── Apache License.txt │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ ├── OpenSans-Regular-webfont.ttf │ └── OpenSans-Regular-webfont.woff ├── helper.js ├── jquery.additions.js └── styles.css ├── robots.txt ├── schema └── DatabaseSchema.sql ├── shorturl.php ├── soap ├── customerportal.php ├── firefoxtoolbar.php ├── thunderbirdplugin.php ├── vtigerolservice.php └── wordplugin.php ├── storage ├── .htaccess └── vtiger.txt ├── swisspdf └── createpng.php ├── tabdata.php ├── test ├── logo │ ├── application.ico │ ├── crm-logo.png │ ├── crm-now-logo.jpg │ ├── crmnow_logo_header.png │ ├── logo.txt │ ├── pointer.png │ ├── sale.jpeg │ ├── start_main.jpg │ ├── start_main_kundenportal.jpg │ ├── start_main_kundenportal_en.jpg │ └── vtiger-crm-logo.png ├── migration │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.min.css │ │ └── js │ │ │ └── bootstrap.min.js │ ├── css │ │ ├── check_radio_sprite.png │ │ ├── mkCheckbox.css │ │ └── style.css │ ├── images │ │ ├── help40.png │ │ ├── migration_screen.png │ │ ├── no.png │ │ ├── vt1.png │ │ ├── wizard_screen.png │ │ └── yes.png │ └── js │ │ └── jquery-min.js ├── test1.txt └── vtlib │ ├── HTML │ └── README.txt │ └── README.txt ├── user_privileges ├── audit_trail.php ├── default_module_view.php ├── enable_backup.php └── index.html ├── vtigercron.php ├── vtigerservice.php ├── vtigerversion.php ├── vtlib ├── ModuleDir │ └── 6.0.0 │ │ ├── ModuleName.php │ │ └── languages │ │ └── en_us │ │ └── ModuleName.php ├── README-UsingModuleDir.txt ├── Vtiger │ ├── Access.php │ ├── Block.php │ ├── Cron.php │ ├── Deprecated.php │ ├── Event.php │ ├── Feed │ │ └── Parser.php │ ├── Field.php │ ├── FieldBasic.php │ ├── Filter.php │ ├── Functions.php │ ├── Language.php │ ├── LanguageExport.php │ ├── LanguageImport.php │ ├── Layout.php │ ├── LayoutExport.php │ ├── LayoutImport.php │ ├── Link.php │ ├── LinkData.php │ ├── Mailer.php │ ├── Menu.php │ ├── Module.php │ ├── ModuleBasic.php │ ├── Net │ │ └── Client.php │ ├── PDF │ │ ├── Frame.php │ │ ├── PDFGenerator.php │ │ ├── TCPDF.php │ │ ├── inventory │ │ │ ├── ContentViewer.php │ │ │ ├── ContentViewer2.php │ │ │ ├── FooterViewer.php │ │ │ └── HeaderViewer.php │ │ ├── models │ │ │ └── Model.php │ │ └── viewers │ │ │ ├── ContentViewer.php │ │ │ ├── FooterViewer.php │ │ │ ├── HeaderViewer.php │ │ │ ├── PagerViewer.php │ │ │ └── Viewer.php │ ├── Package.php │ ├── PackageExport.php │ ├── PackageImport.php │ ├── PackageUpdate.php │ ├── Profile.php │ ├── ThemeExport.php │ ├── ThemeImport.php │ ├── Unzip.php │ ├── Utils.php │ ├── Utils │ │ └── StringTemplate.php │ ├── Version.php │ ├── Webservice.php │ └── Zip.php ├── thirdparty │ ├── dUnzip2.inc.php │ ├── dZip.inc.php │ ├── network │ │ ├── Net │ │ │ ├── Socket.php │ │ │ └── URL.php │ │ ├── PEAR.php │ │ ├── Request.php │ │ └── Request │ │ │ └── Listener.php │ └── parser │ │ └── feed │ │ └── simplepie.inc ├── tools │ └── console.php └── vtlib-Copyright.txt └── webservice.php /Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/Copyright.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PEAR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/PEAR.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/README.txt -------------------------------------------------------------------------------- /Release_Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/Release_Notes.html -------------------------------------------------------------------------------- /SPL-1.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/SPL-1.1.2.txt -------------------------------------------------------------------------------- /SendSupportNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/SendSupportNotification.php -------------------------------------------------------------------------------- /cache/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cache/images/index.html -------------------------------------------------------------------------------- /cache/import/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cache/import/index.html -------------------------------------------------------------------------------- /cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cache/index.html -------------------------------------------------------------------------------- /cache/upload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cache/upload/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/composer.lock -------------------------------------------------------------------------------- /config.db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/config.db.php -------------------------------------------------------------------------------- /config.performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/config.performance.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/config.php -------------------------------------------------------------------------------- /config.security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/config.security.php -------------------------------------------------------------------------------- /config.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/config.template.php -------------------------------------------------------------------------------- /connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/connection.php -------------------------------------------------------------------------------- /copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/copyright.html -------------------------------------------------------------------------------- /copyright_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/copyright_en.html -------------------------------------------------------------------------------- /cron/MailScanner.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/MailScanner.service -------------------------------------------------------------------------------- /cron/README-NewCronServiceSetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/README-NewCronServiceSetup.txt -------------------------------------------------------------------------------- /cron/SendReminder.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/SendReminder.service -------------------------------------------------------------------------------- /cron/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/class.phpmailer.php -------------------------------------------------------------------------------- /cron/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/class.smtp.php -------------------------------------------------------------------------------- /cron/executecron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/executecron.sh -------------------------------------------------------------------------------- /cron/intimateTaskStatus.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/intimateTaskStatus.bat -------------------------------------------------------------------------------- /cron/intimateTaskStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/intimateTaskStatus.php -------------------------------------------------------------------------------- /cron/jobstartwindows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/jobstartwindows.bat -------------------------------------------------------------------------------- /cron/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /cron/language/phpmailer.lang-en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/language/phpmailer.lang-en.php -------------------------------------------------------------------------------- /cron/modules/README.txt: -------------------------------------------------------------------------------- 1 | Module specific cron scripts should be here. -------------------------------------------------------------------------------- /cron/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/output.txt -------------------------------------------------------------------------------- /cron/schtasks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/schtasks.exe -------------------------------------------------------------------------------- /cron/send_mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/send_mail.php -------------------------------------------------------------------------------- /cron/sendreminder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/sendreminder.sh -------------------------------------------------------------------------------- /cron/sendsupportnotification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/sendsupportnotification.sh -------------------------------------------------------------------------------- /cron/vtigercron.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/vtigercron.bat -------------------------------------------------------------------------------- /cron/vtigercron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/cron/vtigercron.sh -------------------------------------------------------------------------------- /customerportal/Accounts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Accounts/index.html -------------------------------------------------------------------------------- /customerportal/Accounts/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Accounts/index.php -------------------------------------------------------------------------------- /customerportal/Acknowledgment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Acknowledgment.txt -------------------------------------------------------------------------------- /customerportal/Assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Assets/index.html -------------------------------------------------------------------------------- /customerportal/Assets/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Assets/index.php -------------------------------------------------------------------------------- /customerportal/Contacts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Contacts/index.html -------------------------------------------------------------------------------- /customerportal/Contacts/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Contacts/index.php -------------------------------------------------------------------------------- /customerportal/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Documents/index.html -------------------------------------------------------------------------------- /customerportal/Documents/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Documents/index.php -------------------------------------------------------------------------------- /customerportal/Faq/FaqDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Faq/FaqDetail.php -------------------------------------------------------------------------------- /customerportal/Faq/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Faq/Utils.php -------------------------------------------------------------------------------- /customerportal/Faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Faq/index.html -------------------------------------------------------------------------------- /customerportal/Faq/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Faq/index.php -------------------------------------------------------------------------------- /customerportal/HelpDesk/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/HelpDesk/Utils.php -------------------------------------------------------------------------------- /customerportal/HelpDesk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/HelpDesk/index.html -------------------------------------------------------------------------------- /customerportal/HelpDesk/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/HelpDesk/index.php -------------------------------------------------------------------------------- /customerportal/INSTALLATION.txt: -------------------------------------------------------------------------------- 1 | Please look at http://wiki.vtiger.com for more details. -------------------------------------------------------------------------------- /customerportal/Invoice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Invoice/index.html -------------------------------------------------------------------------------- /customerportal/Invoice/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Invoice/index.php -------------------------------------------------------------------------------- /customerportal/MySettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/MySettings.php -------------------------------------------------------------------------------- /customerportal/PortalConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/PortalConfig.php -------------------------------------------------------------------------------- /customerportal/Products/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Products/index.html -------------------------------------------------------------------------------- /customerportal/Products/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Products/index.php -------------------------------------------------------------------------------- /customerportal/Project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Project/index.html -------------------------------------------------------------------------------- /customerportal/Project/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Project/index.php -------------------------------------------------------------------------------- /customerportal/Quotes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Quotes/index.html -------------------------------------------------------------------------------- /customerportal/Quotes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Quotes/index.php -------------------------------------------------------------------------------- /customerportal/Services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Services/index.html -------------------------------------------------------------------------------- /customerportal/Services/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/Services/index.php -------------------------------------------------------------------------------- /customerportal/csrf-protect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/csrf-protect.php -------------------------------------------------------------------------------- /customerportal/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/AdminLTE.css -------------------------------------------------------------------------------- /customerportal/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/custom.css -------------------------------------------------------------------------------- /customerportal/css/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/dropdown.css -------------------------------------------------------------------------------- /customerportal/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/font-awesome.css -------------------------------------------------------------------------------- /customerportal/css/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/images/file.gif -------------------------------------------------------------------------------- /customerportal/css/images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/images/minus.gif -------------------------------------------------------------------------------- /customerportal/css/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/images/plus.gif -------------------------------------------------------------------------------- /customerportal/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/ionicons.min.css -------------------------------------------------------------------------------- /customerportal/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/style.css -------------------------------------------------------------------------------- /customerportal/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/styles.css -------------------------------------------------------------------------------- /customerportal/css/treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/css/treeview.css -------------------------------------------------------------------------------- /customerportal/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/fonts/ionicons.eot -------------------------------------------------------------------------------- /customerportal/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/fonts/ionicons.svg -------------------------------------------------------------------------------- /customerportal/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/fonts/ionicons.ttf -------------------------------------------------------------------------------- /customerportal/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/fonts/ionicons.woff -------------------------------------------------------------------------------- /customerportal/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/footer.html -------------------------------------------------------------------------------- /customerportal/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/header.html -------------------------------------------------------------------------------- /customerportal/images/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/avatar3.png -------------------------------------------------------------------------------- /customerportal/images/category.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/category.gif -------------------------------------------------------------------------------- /customerportal/images/email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/email.gif -------------------------------------------------------------------------------- /customerportal/images/faq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/faq.gif -------------------------------------------------------------------------------- /customerportal/images/favorite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/favorite.gif -------------------------------------------------------------------------------- /customerportal/images/inner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/inner.gif -------------------------------------------------------------------------------- /customerportal/images/loginBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/loginBg.gif -------------------------------------------------------------------------------- /customerportal/images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/minus.gif -------------------------------------------------------------------------------- /customerportal/images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/plus.gif -------------------------------------------------------------------------------- /customerportal/images/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/print.gif -------------------------------------------------------------------------------- /customerportal/images/products.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/products.gif -------------------------------------------------------------------------------- /customerportal/images/status.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/images/status.gif -------------------------------------------------------------------------------- /customerportal/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/include.php -------------------------------------------------------------------------------- /customerportal/include/Zend/Json/TODO.txt: -------------------------------------------------------------------------------- 1 | * Unit tests 2 | -------------------------------------------------------------------------------- /customerportal/include/htmlpurify/.gitattributes: -------------------------------------------------------------------------------- 1 | configdoc/usage.xml -crlf 2 | -------------------------------------------------------------------------------- /customerportal/include/htmlpurify/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.0 -------------------------------------------------------------------------------- /customerportal/include/htmlpurify/maintenance/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /customerportal/include/htmlpurify/plugins/phorum/.gitignore: -------------------------------------------------------------------------------- 1 | migrate.php 2 | htmlpurifier/* 3 | -------------------------------------------------------------------------------- /customerportal/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/index.php -------------------------------------------------------------------------------- /customerportal/js/AdminLTE/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/AdminLTE/app.js -------------------------------------------------------------------------------- /customerportal/js/AdminLTE/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/AdminLTE/demo.js -------------------------------------------------------------------------------- /customerportal/js/Treecookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/Treecookie.js -------------------------------------------------------------------------------- /customerportal/js/Treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/Treeview.js -------------------------------------------------------------------------------- /customerportal/js/acdropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/acdropdown.js -------------------------------------------------------------------------------- /customerportal/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/bootstrap.js -------------------------------------------------------------------------------- /customerportal/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/bootstrap.min.js -------------------------------------------------------------------------------- /customerportal/js/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/cookies.js -------------------------------------------------------------------------------- /customerportal/js/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/general.js -------------------------------------------------------------------------------- /customerportal/js/getobject2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/getobject2.js -------------------------------------------------------------------------------- /customerportal/js/modomt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/modomt.js -------------------------------------------------------------------------------- /customerportal/js/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/js/prototype.js -------------------------------------------------------------------------------- /customerportal/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/login.php -------------------------------------------------------------------------------- /customerportal/nusoap/lib/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/nusoap/lib/changelog -------------------------------------------------------------------------------- /customerportal/supportpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/supportpage.php -------------------------------------------------------------------------------- /customerportal/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/customerportal/version.php -------------------------------------------------------------------------------- /data/CRMEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/data/CRMEntity.php -------------------------------------------------------------------------------- /data/Tracker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/data/Tracker.php -------------------------------------------------------------------------------- /data/VTEntityDelta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/data/VTEntityDelta.php -------------------------------------------------------------------------------- /db_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/db_update.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/favicon.ico -------------------------------------------------------------------------------- /forgotPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/forgotPassword.php -------------------------------------------------------------------------------- /htaccess.txt: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /include/ChartUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/ChartUtils.php -------------------------------------------------------------------------------- /include/ComboStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/ComboStrings.php -------------------------------------------------------------------------------- /include/ComboUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/ComboUtil.php -------------------------------------------------------------------------------- /include/CustomFieldUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/CustomFieldUtil.php -------------------------------------------------------------------------------- /include/FormValidationUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/FormValidationUtil.php -------------------------------------------------------------------------------- /include/InventoryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/InventoryHandler.php -------------------------------------------------------------------------------- /include/InventoryPDFController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/InventoryPDFController.php -------------------------------------------------------------------------------- /include/PopulateComboValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/PopulateComboValues.php -------------------------------------------------------------------------------- /include/QueryParser/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Component.php -------------------------------------------------------------------------------- /include/QueryParser/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Context.php -------------------------------------------------------------------------------- /include/QueryParser/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Core.php -------------------------------------------------------------------------------- /include/QueryParser/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Lexer.php -------------------------------------------------------------------------------- /include/QueryParser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Parser.php -------------------------------------------------------------------------------- /include/QueryParser/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Statement.php -------------------------------------------------------------------------------- /include/QueryParser/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Token.php -------------------------------------------------------------------------------- /include/QueryParser/TokensList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/TokensList.php -------------------------------------------------------------------------------- /include/QueryParser/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Translator.php -------------------------------------------------------------------------------- /include/QueryParser/UtfString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/UtfString.php -------------------------------------------------------------------------------- /include/QueryParser/Utils/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Utils/CLI.php -------------------------------------------------------------------------------- /include/QueryParser/Utils/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Utils/Error.php -------------------------------------------------------------------------------- /include/QueryParser/Utils/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Utils/Misc.php -------------------------------------------------------------------------------- /include/QueryParser/Utils/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Utils/Query.php -------------------------------------------------------------------------------- /include/QueryParser/Utils/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/QueryParser/Utils/Table.php -------------------------------------------------------------------------------- /include/RelatedListView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/RelatedListView.php -------------------------------------------------------------------------------- /include/Webservices/AuthToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/AuthToken.php -------------------------------------------------------------------------------- /include/Webservices/ConvertLead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/ConvertLead.php -------------------------------------------------------------------------------- /include/Webservices/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Create.php -------------------------------------------------------------------------------- /include/Webservices/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Delete.php -------------------------------------------------------------------------------- /include/Webservices/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/DeleteUser.php -------------------------------------------------------------------------------- /include/Webservices/EntityMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/EntityMeta.php -------------------------------------------------------------------------------- /include/Webservices/GetUpdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/GetUpdates.php -------------------------------------------------------------------------------- /include/Webservices/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/History.php -------------------------------------------------------------------------------- /include/Webservices/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Login.php -------------------------------------------------------------------------------- /include/Webservices/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Logout.php -------------------------------------------------------------------------------- /include/Webservices/ModuleTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/ModuleTypes.php -------------------------------------------------------------------------------- /include/Webservices/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Query.php -------------------------------------------------------------------------------- /include/Webservices/QueryParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/QueryParser.php -------------------------------------------------------------------------------- /include/Webservices/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Relation.php -------------------------------------------------------------------------------- /include/Webservices/Retrieve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Retrieve.php -------------------------------------------------------------------------------- /include/Webservices/Revise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Revise.php -------------------------------------------------------------------------------- /include/Webservices/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/State.php -------------------------------------------------------------------------------- /include/Webservices/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Update.php -------------------------------------------------------------------------------- /include/Webservices/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/Utils.php -------------------------------------------------------------------------------- /include/Webservices/VTQL_Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/VTQL_Lexer.php -------------------------------------------------------------------------------- /include/Webservices/VTQL_Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Webservices/VTQL_Parser.php -------------------------------------------------------------------------------- /include/Zend/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Crypt.php -------------------------------------------------------------------------------- /include/Zend/Crypt/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Crypt/Exception.php -------------------------------------------------------------------------------- /include/Zend/Crypt/Hmac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Crypt/Hmac.php -------------------------------------------------------------------------------- /include/Zend/Crypt/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Crypt/Math.php -------------------------------------------------------------------------------- /include/Zend/Crypt/Rsa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Crypt/Rsa.php -------------------------------------------------------------------------------- /include/Zend/Crypt/Rsa/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Crypt/Rsa/Key.php -------------------------------------------------------------------------------- /include/Zend/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Exception.php -------------------------------------------------------------------------------- /include/Zend/Gdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Analytics.php -------------------------------------------------------------------------------- /include/Zend/Gdata/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/App.php -------------------------------------------------------------------------------- /include/Zend/Gdata/App/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/App/Base.php -------------------------------------------------------------------------------- /include/Zend/Gdata/App/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/App/Entry.php -------------------------------------------------------------------------------- /include/Zend/Gdata/App/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/App/Feed.php -------------------------------------------------------------------------------- /include/Zend/Gdata/App/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/App/Util.php -------------------------------------------------------------------------------- /include/Zend/Gdata/AuthSub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/AuthSub.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Books.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Calendar.php -------------------------------------------------------------------------------- /include/Zend/Gdata/ClientLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/ClientLogin.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Contacts.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Docs.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Docs/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Docs/Query.php -------------------------------------------------------------------------------- /include/Zend/Gdata/DublinCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/DublinCore.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Entry.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Exif.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Exif/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Exif/Entry.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Exif/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Exif/Feed.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Extension.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Feed.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Gapps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Gapps.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Gapps/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Gapps/Error.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Gapps/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Gapps/Query.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Gbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Gbase.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Geo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Geo.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Geo/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Geo/Entry.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Geo/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Geo/Feed.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Health.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Media.php -------------------------------------------------------------------------------- /include/Zend/Gdata/MimeFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/MimeFile.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Photos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Photos.php -------------------------------------------------------------------------------- /include/Zend/Gdata/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/Query.php -------------------------------------------------------------------------------- /include/Zend/Gdata/YouTube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Gdata/YouTube.php -------------------------------------------------------------------------------- /include/Zend/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Http/Client.php -------------------------------------------------------------------------------- /include/Zend/Http/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Http/Exception.php -------------------------------------------------------------------------------- /include/Zend/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Http/Response.php -------------------------------------------------------------------------------- /include/Zend/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Json.php -------------------------------------------------------------------------------- /include/Zend/Json/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Json/Decoder.php -------------------------------------------------------------------------------- /include/Zend/Json/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Json/Encoder.php -------------------------------------------------------------------------------- /include/Zend/Json/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Json/Exception.php -------------------------------------------------------------------------------- /include/Zend/Json/TODO.txt: -------------------------------------------------------------------------------- 1 | * Unit tests 2 | -------------------------------------------------------------------------------- /include/Zend/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Loader.php -------------------------------------------------------------------------------- /include/Zend/Oauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Oauth.php -------------------------------------------------------------------------------- /include/Zend/Oauth/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Oauth/Client.php -------------------------------------------------------------------------------- /include/Zend/Oauth/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Oauth/Config.php -------------------------------------------------------------------------------- /include/Zend/Oauth/Consumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Oauth/Consumer.php -------------------------------------------------------------------------------- /include/Zend/Oauth/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Oauth/Exception.php -------------------------------------------------------------------------------- /include/Zend/Oauth/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Oauth/Http.php -------------------------------------------------------------------------------- /include/Zend/Oauth/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Oauth/Token.php -------------------------------------------------------------------------------- /include/Zend/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Registry.php -------------------------------------------------------------------------------- /include/Zend/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Uri.php -------------------------------------------------------------------------------- /include/Zend/Uri/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Uri/Exception.php -------------------------------------------------------------------------------- /include/Zend/Uri/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Uri/Http.php -------------------------------------------------------------------------------- /include/Zend/Validate/Ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Validate/Ip.php -------------------------------------------------------------------------------- /include/Zend/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/Zend/Version.php -------------------------------------------------------------------------------- /include/database/Postgres8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/database/Postgres8.php -------------------------------------------------------------------------------- /include/deprecated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/deprecated.txt -------------------------------------------------------------------------------- /include/events/VTBatchData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/events/VTBatchData.inc -------------------------------------------------------------------------------- /include/events/VTEntityData.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/events/VTEntityData.inc -------------------------------------------------------------------------------- /include/events/VTEntityType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/events/VTEntityType.inc -------------------------------------------------------------------------------- /include/events/include.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/events/include.inc -------------------------------------------------------------------------------- /include/fields/CurrencyField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/fields/CurrencyField.php -------------------------------------------------------------------------------- /include/fields/DateTimeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/fields/DateTimeField.php -------------------------------------------------------------------------------- /include/fields/NumberField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/fields/NumberField.php -------------------------------------------------------------------------------- /include/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/logging.php -------------------------------------------------------------------------------- /include/utils/CommonUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/CommonUtils.php -------------------------------------------------------------------------------- /include/utils/ConfigReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/ConfigReader.php -------------------------------------------------------------------------------- /include/utils/EditViewUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/EditViewUtils.php -------------------------------------------------------------------------------- /include/utils/EmailTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/EmailTemplate.php -------------------------------------------------------------------------------- /include/utils/ExportRecords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/ExportRecords.php -------------------------------------------------------------------------------- /include/utils/ExportUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/ExportUtils.php -------------------------------------------------------------------------------- /include/utils/GetGroupUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/GetGroupUsers.php -------------------------------------------------------------------------------- /include/utils/GetUserGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/GetUserGroups.php -------------------------------------------------------------------------------- /include/utils/GraphUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/GraphUtils.php -------------------------------------------------------------------------------- /include/utils/InventoryUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/InventoryUtils.php -------------------------------------------------------------------------------- /include/utils/ListViewUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/ListViewUtils.php -------------------------------------------------------------------------------- /include/utils/RecurringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/RecurringType.php -------------------------------------------------------------------------------- /include/utils/SearchUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/SearchUtils.php -------------------------------------------------------------------------------- /include/utils/UserInfoUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/UserInfoUtil.php -------------------------------------------------------------------------------- /include/utils/VTCacheUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/VTCacheUtils.php -------------------------------------------------------------------------------- /include/utils/VtlibUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/VtlibUtils.php -------------------------------------------------------------------------------- /include/utils/encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/encryption.php -------------------------------------------------------------------------------- /include/utils/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/export.php -------------------------------------------------------------------------------- /include/utils/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/include/utils/utils.php -------------------------------------------------------------------------------- /includes/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/Loader.php -------------------------------------------------------------------------------- /includes/http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/http/Request.php -------------------------------------------------------------------------------- /includes/http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/http/Response.php -------------------------------------------------------------------------------- /includes/http/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/http/Session.php -------------------------------------------------------------------------------- /includes/main/WebUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/main/WebUI.php -------------------------------------------------------------------------------- /includes/runtime/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/BaseModel.php -------------------------------------------------------------------------------- /includes/runtime/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/Cache.php -------------------------------------------------------------------------------- /includes/runtime/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/Controller.php -------------------------------------------------------------------------------- /includes/runtime/EntryPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/EntryPoint.php -------------------------------------------------------------------------------- /includes/runtime/Globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/Globals.php -------------------------------------------------------------------------------- /includes/runtime/JavaScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/JavaScript.php -------------------------------------------------------------------------------- /includes/runtime/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/Theme.php -------------------------------------------------------------------------------- /includes/runtime/Viewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/includes/runtime/Viewer.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/index.php -------------------------------------------------------------------------------- /installComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/installComposer.php -------------------------------------------------------------------------------- /kcfinder/browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/browse.php -------------------------------------------------------------------------------- /kcfinder/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/config.php -------------------------------------------------------------------------------- /kcfinder/core/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/core/.htaccess -------------------------------------------------------------------------------- /kcfinder/core/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/core/autoload.php -------------------------------------------------------------------------------- /kcfinder/core/browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/core/browser.php -------------------------------------------------------------------------------- /kcfinder/core/types/type_img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/core/types/type_img.php -------------------------------------------------------------------------------- /kcfinder/core/uploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/core/uploader.php -------------------------------------------------------------------------------- /kcfinder/css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/css.php -------------------------------------------------------------------------------- /kcfinder/doc/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/doc/.htaccess -------------------------------------------------------------------------------- /kcfinder/doc/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/doc/Changelog -------------------------------------------------------------------------------- /kcfinder/doc/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/doc/LICENSE.GPL -------------------------------------------------------------------------------- /kcfinder/doc/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/doc/LICENSE.LGPL -------------------------------------------------------------------------------- /kcfinder/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/doc/README -------------------------------------------------------------------------------- /kcfinder/js/browser/0bject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/0bject.js -------------------------------------------------------------------------------- /kcfinder/js/browser/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/clipboard.js -------------------------------------------------------------------------------- /kcfinder/js/browser/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/files.js -------------------------------------------------------------------------------- /kcfinder/js/browser/folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/folders.js -------------------------------------------------------------------------------- /kcfinder/js/browser/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/init.js -------------------------------------------------------------------------------- /kcfinder/js/browser/joiner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/joiner.php -------------------------------------------------------------------------------- /kcfinder/js/browser/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/misc.js -------------------------------------------------------------------------------- /kcfinder/js/browser/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/settings.js -------------------------------------------------------------------------------- /kcfinder/js/browser/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/browser/toolbar.js -------------------------------------------------------------------------------- /kcfinder/js/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/helper.js -------------------------------------------------------------------------------- /kcfinder/js/jquery.drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/jquery.drag.js -------------------------------------------------------------------------------- /kcfinder/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/jquery.js -------------------------------------------------------------------------------- /kcfinder/js/jquery.rightClick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js/jquery.rightClick.js -------------------------------------------------------------------------------- /kcfinder/js_localize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/js_localize.php -------------------------------------------------------------------------------- /kcfinder/lang/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/.htaccess -------------------------------------------------------------------------------- /kcfinder/lang/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/bg.php -------------------------------------------------------------------------------- /kcfinder/lang/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/cs.php -------------------------------------------------------------------------------- /kcfinder/lang/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/de.php -------------------------------------------------------------------------------- /kcfinder/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/en.php -------------------------------------------------------------------------------- /kcfinder/lang/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/es.php -------------------------------------------------------------------------------- /kcfinder/lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/fa.php -------------------------------------------------------------------------------- /kcfinder/lang/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/fr.php -------------------------------------------------------------------------------- /kcfinder/lang/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/hu.php -------------------------------------------------------------------------------- /kcfinder/lang/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/it.php -------------------------------------------------------------------------------- /kcfinder/lang/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/nl.php -------------------------------------------------------------------------------- /kcfinder/lang/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/pl.php -------------------------------------------------------------------------------- /kcfinder/lang/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/pt.php -------------------------------------------------------------------------------- /kcfinder/lang/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/ru.php -------------------------------------------------------------------------------- /kcfinder/lang/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/tr.php -------------------------------------------------------------------------------- /kcfinder/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lang/zh-cn.php -------------------------------------------------------------------------------- /kcfinder/lib/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/.htaccess -------------------------------------------------------------------------------- /kcfinder/lib/class_gd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/class_gd.php -------------------------------------------------------------------------------- /kcfinder/lib/class_input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/class_input.php -------------------------------------------------------------------------------- /kcfinder/lib/class_zipFolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/class_zipFolder.php -------------------------------------------------------------------------------- /kcfinder/lib/helper_dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/helper_dir.php -------------------------------------------------------------------------------- /kcfinder/lib/helper_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/helper_file.php -------------------------------------------------------------------------------- /kcfinder/lib/helper_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/helper_path.php -------------------------------------------------------------------------------- /kcfinder/lib/helper_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/lib/helper_text.php -------------------------------------------------------------------------------- /kcfinder/themes/oxygen/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/themes/oxygen/about.txt -------------------------------------------------------------------------------- /kcfinder/themes/oxygen/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/themes/oxygen/init.js -------------------------------------------------------------------------------- /kcfinder/themes/oxygen/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/themes/oxygen/style.css -------------------------------------------------------------------------------- /kcfinder/tpl/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/.htaccess -------------------------------------------------------------------------------- /kcfinder/tpl/tpl__css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl__css.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl__javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl__javascript.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl_browser.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_chDir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl_chDir.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_deleteDir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl_deleteDir.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl_error.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_expand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl_expand.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl_init.php -------------------------------------------------------------------------------- /kcfinder/tpl/tpl_renameDir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/tpl/tpl_renameDir.php -------------------------------------------------------------------------------- /kcfinder/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/upload.php -------------------------------------------------------------------------------- /kcfinder/upload/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kcfinder/upload/.htaccess -------------------------------------------------------------------------------- /kundenportal/Accounts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Accounts/index.html -------------------------------------------------------------------------------- /kundenportal/Accounts/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Accounts/index.php -------------------------------------------------------------------------------- /kundenportal/Acknowledgment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Acknowledgment.txt -------------------------------------------------------------------------------- /kundenportal/Assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Assets/index.html -------------------------------------------------------------------------------- /kundenportal/Assets/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Assets/index.php -------------------------------------------------------------------------------- /kundenportal/Contacts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Contacts/index.html -------------------------------------------------------------------------------- /kundenportal/Contacts/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Contacts/index.php -------------------------------------------------------------------------------- /kundenportal/Documents/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Documents/index.php -------------------------------------------------------------------------------- /kundenportal/Faq/FaqDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Faq/FaqDetail.php -------------------------------------------------------------------------------- /kundenportal/Faq/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Faq/Utils.php -------------------------------------------------------------------------------- /kundenportal/Faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Faq/index.html -------------------------------------------------------------------------------- /kundenportal/Faq/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Faq/index.php -------------------------------------------------------------------------------- /kundenportal/HelpDesk/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/HelpDesk/Utils.php -------------------------------------------------------------------------------- /kundenportal/HelpDesk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/HelpDesk/index.html -------------------------------------------------------------------------------- /kundenportal/HelpDesk/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/HelpDesk/index.php -------------------------------------------------------------------------------- /kundenportal/INSTALLATION.txt: -------------------------------------------------------------------------------- 1 | Please look at http://wiki.vtiger.com for more details. -------------------------------------------------------------------------------- /kundenportal/Invoice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Invoice/index.html -------------------------------------------------------------------------------- /kundenportal/Invoice/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Invoice/index.php -------------------------------------------------------------------------------- /kundenportal/MySettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/MySettings.php -------------------------------------------------------------------------------- /kundenportal/PortalConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/PortalConfig.php -------------------------------------------------------------------------------- /kundenportal/Products/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Products/index.html -------------------------------------------------------------------------------- /kundenportal/Products/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Products/index.php -------------------------------------------------------------------------------- /kundenportal/Project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Project/index.html -------------------------------------------------------------------------------- /kundenportal/Project/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Project/index.php -------------------------------------------------------------------------------- /kundenportal/Quotes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Quotes/index.html -------------------------------------------------------------------------------- /kundenportal/Quotes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Quotes/index.php -------------------------------------------------------------------------------- /kundenportal/Services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Services/index.html -------------------------------------------------------------------------------- /kundenportal/Services/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/kundenportal/Services/index.php -------------------------------------------------------------------------------- /kundenportal/config.csrf-secret.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/antlr/CommonToken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/antlr/DFA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/antlr/DFA.php -------------------------------------------------------------------------------- /libraries/antlr/IntStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/antlr/IntStream.php -------------------------------------------------------------------------------- /libraries/antlr/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/antlr/Set.php -------------------------------------------------------------------------------- /libraries/antlr/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/antlr/Token.php -------------------------------------------------------------------------------- /libraries/antlr/TokenStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/antlr/TokenStream.php -------------------------------------------------------------------------------- /libraries/antlr/antlr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/antlr/antlr.php -------------------------------------------------------------------------------- /libraries/antlr/util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/antlr/util.php -------------------------------------------------------------------------------- /libraries/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/bootstrap/LICENSE -------------------------------------------------------------------------------- /libraries/bootstrap/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/bootstrap/js/README.md -------------------------------------------------------------------------------- /libraries/csrf-magic/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/csrf-magic/NEWS.txt -------------------------------------------------------------------------------- /libraries/csrf-magic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/csrf-magic/README.txt -------------------------------------------------------------------------------- /libraries/freetag/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/freetag/license.txt -------------------------------------------------------------------------------- /libraries/fullcalendar/gcal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/fullcalendar/gcal.js -------------------------------------------------------------------------------- /libraries/guidersjs/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/guidersjs/README.html -------------------------------------------------------------------------------- /libraries/guidersjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/guidersjs/README.md -------------------------------------------------------------------------------- /libraries/html5shim/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/html5shim/html5.js -------------------------------------------------------------------------------- /libraries/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/htmlpurifier/CREDITS -------------------------------------------------------------------------------- /libraries/htmlpurifier/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/htmlpurifier/INSTALL -------------------------------------------------------------------------------- /libraries/htmlpurifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/htmlpurifier/LICENSE -------------------------------------------------------------------------------- /libraries/htmlpurifier/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/htmlpurifier/NEWS -------------------------------------------------------------------------------- /libraries/jquery/defunkt-jquery-pjax/test/views/boom.erb: -------------------------------------------------------------------------------- 1 |

500

2 | -------------------------------------------------------------------------------- /libraries/jquery/defunkt-jquery-pjax/test/views/empty.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/jquery/jquery.ajaxq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/jquery/jquery.ajaxq.js -------------------------------------------------------------------------------- /libraries/jquery/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/jquery/jquery.form.js -------------------------------------------------------------------------------- /libraries/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/jquery/jquery.min.js -------------------------------------------------------------------------------- /libraries/jquery/jqueryRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/jquery/jqueryRating.js -------------------------------------------------------------------------------- /libraries/jquery/jstorage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/jquery/jstorage.min.js -------------------------------------------------------------------------------- /libraries/jquery/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/jquery/license.txt -------------------------------------------------------------------------------- /libraries/jquery/select2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/jquery/select2/LICENSE -------------------------------------------------------------------------------- /libraries/nusoap/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/nusoap/changelog -------------------------------------------------------------------------------- /libraries/nusoap/class.wsdl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/nusoap/class.wsdl.php -------------------------------------------------------------------------------- /libraries/nusoap/nusoap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/nusoap/nusoap.php -------------------------------------------------------------------------------- /libraries/nusoap/nusoapmime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/nusoap/nusoapmime.php -------------------------------------------------------------------------------- /libraries/tcpdf/CHANGELOG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/CHANGELOG.TXT -------------------------------------------------------------------------------- /libraries/tcpdf/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/LICENSE.TXT -------------------------------------------------------------------------------- /libraries/tcpdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/README.md -------------------------------------------------------------------------------- /libraries/tcpdf/VERSION: -------------------------------------------------------------------------------- 1 | 6.4.4 2 | -------------------------------------------------------------------------------- /libraries/tcpdf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/composer.json -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/.noencode: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/FreeMono.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/FreeMono.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/FreeSans.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/FreeSans.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/README.TXT -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ZarBold.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/ZarBold.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/aefurat.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/aefurat.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/cid0cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/cid0cs.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/cid0ct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/cid0ct.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/cid0jp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/cid0jp.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/cid0kr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/cid0kr.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/old/.noencode: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/symbol.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/times.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/timesb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/timesb.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/timesi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/timesi.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/CHANGES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/encodings/adobestd/adobe-std.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/encodings/latin1/iso8859-1.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/encodings/latin2/iso8859-2.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/encodings/latin4/iso8859-4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/encodings/latin4/iso8859-4.tbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/ttf2ufm/ttf2ufm-src/encodings/latin5/iso8859-9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/vera.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/vera.ctg.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/vera.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/vera.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/vera.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/vera.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verab.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verab.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verab.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verabi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verabi.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verabi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verabi.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verai.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verai.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verai.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/veramo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/veramo.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/veramo.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/veramo.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/veramob.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/veramob.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/veramobi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/veramobi.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/veramoi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/veramoi.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verase.php -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/verase.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/verase.z -------------------------------------------------------------------------------- /libraries/tcpdf/fonts/veraseb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/fonts/veraseb.z -------------------------------------------------------------------------------- /libraries/tcpdf/include/sRGB.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/include/sRGB.icc -------------------------------------------------------------------------------- /libraries/tcpdf/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/tcpdf.php -------------------------------------------------------------------------------- /libraries/tcpdf/tcpdf_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/tcpdf_import.php -------------------------------------------------------------------------------- /libraries/tcpdf/tcpdf_parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/libraries/tcpdf/tcpdf_parser.php -------------------------------------------------------------------------------- /libraries/tcpdf/tools/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /license/License_linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/license/License_linux.txt -------------------------------------------------------------------------------- /license/License_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/license/License_windows.txt -------------------------------------------------------------------------------- /log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/log4php.properties -------------------------------------------------------------------------------- /logs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/logs/.htaccess -------------------------------------------------------------------------------- /logs/todel.txt.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrate/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/migrate/index.php -------------------------------------------------------------------------------- /migrate/resources/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/migrate/resources/css/style.css -------------------------------------------------------------------------------- /migrate/resources/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/migrate/resources/images/no.png -------------------------------------------------------------------------------- /migrate/resources/images/vt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/migrate/resources/images/vt1.png -------------------------------------------------------------------------------- /migrate/resources/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/migrate/resources/images/yes.png -------------------------------------------------------------------------------- /modules/Accounts/Accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Accounts/Accounts.php -------------------------------------------------------------------------------- /modules/Calendar/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Calendar/Activity.php -------------------------------------------------------------------------------- /modules/Calendar/Appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Calendar/Appointment.php -------------------------------------------------------------------------------- /modules/Calendar/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Calendar/Calendar.php -------------------------------------------------------------------------------- /modules/Calendar/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Calendar/Date.php -------------------------------------------------------------------------------- /modules/Calendar/iCalExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Calendar/iCalExport.php -------------------------------------------------------------------------------- /modules/Calendar/iCalImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Calendar/iCalImport.php -------------------------------------------------------------------------------- /modules/Calendar/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Calendar/views/Edit.php -------------------------------------------------------------------------------- /modules/Campaigns/Campaigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Campaigns/Campaigns.php -------------------------------------------------------------------------------- /modules/Contacts/Contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/Contacts.php -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_BL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_BL.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_BR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_BR.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_M.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_M.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_ML.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_ML.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_MR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_MR.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_T.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_T.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_TL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_TL.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/box_TR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/box_TR.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/bx_B.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/bx_B.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/close.gif -------------------------------------------------------------------------------- /modules/Contacts/imgs/hide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/imgs/hide.gif -------------------------------------------------------------------------------- /modules/Contacts/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Contacts/views/Edit.php -------------------------------------------------------------------------------- /modules/Documents/Documents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Documents/Documents.php -------------------------------------------------------------------------------- /modules/Documents/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Documents/views/Edit.php -------------------------------------------------------------------------------- /modules/Documents/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Documents/views/List.php -------------------------------------------------------------------------------- /modules/Emails/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/Emails.php -------------------------------------------------------------------------------- /modules/Emails/PHPMailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/PHPMailer/LICENSE -------------------------------------------------------------------------------- /modules/Emails/PHPMailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.1.4 -------------------------------------------------------------------------------- /modules/Emails/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/class.smtp.php -------------------------------------------------------------------------------- /modules/Emails/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/mail.php -------------------------------------------------------------------------------- /modules/Emails/models/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/models/Mailer.php -------------------------------------------------------------------------------- /modules/Emails/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/models/Module.php -------------------------------------------------------------------------------- /modules/Emails/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/models/Record.php -------------------------------------------------------------------------------- /modules/Emails/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Emails/views/List.php -------------------------------------------------------------------------------- /modules/Events/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Events/actions/Save.php -------------------------------------------------------------------------------- /modules/Events/models/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Events/models/Field.php -------------------------------------------------------------------------------- /modules/Events/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Events/models/Module.php -------------------------------------------------------------------------------- /modules/Events/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Events/models/Record.php -------------------------------------------------------------------------------- /modules/Events/uitypes/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Events/uitypes/Time.php -------------------------------------------------------------------------------- /modules/Events/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Events/views/Detail.php -------------------------------------------------------------------------------- /modules/Events/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Events/views/Edit.php -------------------------------------------------------------------------------- /modules/Faq/Faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Faq/Faq.php -------------------------------------------------------------------------------- /modules/Faq/models/ListView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Faq/models/ListView.php -------------------------------------------------------------------------------- /modules/Faq/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Faq/models/Module.php -------------------------------------------------------------------------------- /modules/Faq/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Faq/models/Record.php -------------------------------------------------------------------------------- /modules/Faq/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Faq/views/Edit.php -------------------------------------------------------------------------------- /modules/HelpDesk/HelpDesk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/HelpDesk/HelpDesk.php -------------------------------------------------------------------------------- /modules/Home/js/HelpMeNow.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/Home/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Home/models/Module.php -------------------------------------------------------------------------------- /modules/Home/models/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Home/models/Widget.php -------------------------------------------------------------------------------- /modules/Home/views/DashBoard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Home/views/DashBoard.php -------------------------------------------------------------------------------- /modules/Home/views/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Home/views/Index.php -------------------------------------------------------------------------------- /modules/Install/models/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Install/models/Utils.php -------------------------------------------------------------------------------- /modules/Install/views/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Install/views/Index.php -------------------------------------------------------------------------------- /modules/Inventory/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Inventory/views/Edit.php -------------------------------------------------------------------------------- /modules/Inventory/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Inventory/views/List.php -------------------------------------------------------------------------------- /modules/Invoice/CreatePDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/CreatePDF.php -------------------------------------------------------------------------------- /modules/Invoice/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/Invoice.php -------------------------------------------------------------------------------- /modules/Invoice/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/actions/Save.php -------------------------------------------------------------------------------- /modules/Invoice/pdfcreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/pdfcreator.php -------------------------------------------------------------------------------- /modules/Invoice/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/views/Detail.php -------------------------------------------------------------------------------- /modules/Invoice/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/views/Edit.php -------------------------------------------------------------------------------- /modules/Invoice/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/views/List.php -------------------------------------------------------------------------------- /modules/Invoice/views/Popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Invoice/views/Popup.php -------------------------------------------------------------------------------- /modules/Leads/Leads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Leads/Leads.php -------------------------------------------------------------------------------- /modules/Leads/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Leads/actions/Save.php -------------------------------------------------------------------------------- /modules/Leads/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Leads/models/Module.php -------------------------------------------------------------------------------- /modules/Leads/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Leads/models/Record.php -------------------------------------------------------------------------------- /modules/Leads/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Leads/views/Detail.php -------------------------------------------------------------------------------- /modules/Leads/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Leads/views/Edit.php -------------------------------------------------------------------------------- /modules/Portal/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Portal/models/Module.php -------------------------------------------------------------------------------- /modules/Portal/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Portal/views/Detail.php -------------------------------------------------------------------------------- /modules/Portal/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Portal/views/List.php -------------------------------------------------------------------------------- /modules/Products/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Products/Products.php -------------------------------------------------------------------------------- /modules/Products/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Products/views/Edit.php -------------------------------------------------------------------------------- /modules/Quotes/CreatePDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/CreatePDF.php -------------------------------------------------------------------------------- /modules/Quotes/Quotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/Quotes.php -------------------------------------------------------------------------------- /modules/Quotes/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/actions/Save.php -------------------------------------------------------------------------------- /modules/Quotes/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/models/Module.php -------------------------------------------------------------------------------- /modules/Quotes/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/models/Record.php -------------------------------------------------------------------------------- /modules/Quotes/pdfcreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/pdfcreator.php -------------------------------------------------------------------------------- /modules/Quotes/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/views/Detail.php -------------------------------------------------------------------------------- /modules/Quotes/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/views/Edit.php -------------------------------------------------------------------------------- /modules/Quotes/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Quotes/views/List.php -------------------------------------------------------------------------------- /modules/Reports/ReportRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/ReportRun.php -------------------------------------------------------------------------------- /modules/Reports/ReportType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/ReportType.php -------------------------------------------------------------------------------- /modules/Reports/ReportUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/ReportUtils.php -------------------------------------------------------------------------------- /modules/Reports/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/Reports.php -------------------------------------------------------------------------------- /modules/Reports/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/actions/Save.php -------------------------------------------------------------------------------- /modules/Reports/models/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/models/Chart.php -------------------------------------------------------------------------------- /modules/Reports/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/views/Detail.php -------------------------------------------------------------------------------- /modules/Reports/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/views/Edit.php -------------------------------------------------------------------------------- /modules/Reports/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Reports/views/List.php -------------------------------------------------------------------------------- /modules/Rss/actions/GetHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Rss/actions/GetHtml.php -------------------------------------------------------------------------------- /modules/Rss/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Rss/actions/Save.php -------------------------------------------------------------------------------- /modules/Rss/models/ListView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Rss/models/ListView.php -------------------------------------------------------------------------------- /modules/Rss/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Rss/models/Module.php -------------------------------------------------------------------------------- /modules/Rss/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Rss/models/Record.php -------------------------------------------------------------------------------- /modules/Rss/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Rss/views/List.php -------------------------------------------------------------------------------- /modules/Rss/views/ViewTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Rss/views/ViewTypes.php -------------------------------------------------------------------------------- /modules/Services/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Services/Services.php -------------------------------------------------------------------------------- /modules/Services/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Services/views/Edit.php -------------------------------------------------------------------------------- /modules/Services/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Services/views/List.php -------------------------------------------------------------------------------- /modules/Settings/vtigerCRM.CAB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Settings/vtigerCRM.CAB -------------------------------------------------------------------------------- /modules/Users/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/Authenticate.php -------------------------------------------------------------------------------- /modules/Users/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/Users.php -------------------------------------------------------------------------------- /modules/Users/actions/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/actions/Login.php -------------------------------------------------------------------------------- /modules/Users/actions/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/actions/Logout.php -------------------------------------------------------------------------------- /modules/Users/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/actions/Save.php -------------------------------------------------------------------------------- /modules/Users/models/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/models/Field.php -------------------------------------------------------------------------------- /modules/Users/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/models/Module.php -------------------------------------------------------------------------------- /modules/Users/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/models/Record.php -------------------------------------------------------------------------------- /modules/Users/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/views/Detail.php -------------------------------------------------------------------------------- /modules/Users/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/views/Edit.php -------------------------------------------------------------------------------- /modules/Users/views/EditAjax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/views/EditAjax.php -------------------------------------------------------------------------------- /modules/Users/views/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/views/Index.php -------------------------------------------------------------------------------- /modules/Users/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/views/List.php -------------------------------------------------------------------------------- /modules/Users/views/ListAjax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/views/ListAjax.php -------------------------------------------------------------------------------- /modules/Users/views/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Users/views/Login.php -------------------------------------------------------------------------------- /modules/Utilities/Currencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Utilities/Currencies.php -------------------------------------------------------------------------------- /modules/Utilities/Merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Utilities/Merge.php -------------------------------------------------------------------------------- /modules/Vendors/Vendors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vendors/Vendors.php -------------------------------------------------------------------------------- /modules/Vtiger/CRMEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/CRMEntity.php -------------------------------------------------------------------------------- /modules/Vtiger/actions/Mass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/actions/Mass.php -------------------------------------------------------------------------------- /modules/Vtiger/actions/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/actions/Save.php -------------------------------------------------------------------------------- /modules/Vtiger/helpers/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/helpers/Util.php -------------------------------------------------------------------------------- /modules/Vtiger/layout_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/layout_utils.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Action.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Block.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Field.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Image.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Link.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Menu.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Module.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Paging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Paging.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Record.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Tag.php -------------------------------------------------------------------------------- /modules/Vtiger/models/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/models/Widget.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Base.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Date.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Email.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Image.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Owner.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Phone.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Text.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Theme.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Time.php -------------------------------------------------------------------------------- /modules/Vtiger/uitypes/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/uitypes/Url.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Basic.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Detail.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Edit.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Export.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Footer.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Header.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Import.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Index.php -------------------------------------------------------------------------------- /modules/Vtiger/views/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/List.php -------------------------------------------------------------------------------- /modules/Vtiger/views/Popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/modules/Vtiger/views/Popup.php -------------------------------------------------------------------------------- /nexmoWebhookEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/nexmoWebhookEndpoint.php -------------------------------------------------------------------------------- /parent_tabdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/parent_tabdata.php -------------------------------------------------------------------------------- /phpversionfail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/phpversionfail.php -------------------------------------------------------------------------------- /pkg/apache/conf/lin_httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/apache/conf/lin_httpd.conf -------------------------------------------------------------------------------- /pkg/apache/conf/win_httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/apache/conf/win_httpd.conf -------------------------------------------------------------------------------- /pkg/bin/datamigration.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/datamigration.bat -------------------------------------------------------------------------------- /pkg/bin/datamigration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/datamigration.sh -------------------------------------------------------------------------------- /pkg/bin/find_replace.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/find_replace.bat -------------------------------------------------------------------------------- /pkg/bin/startvTiger.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/startvTiger.bat -------------------------------------------------------------------------------- /pkg/bin/startvTiger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/startvTiger.sh -------------------------------------------------------------------------------- /pkg/bin/stopvTiger.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/stopvTiger.bat -------------------------------------------------------------------------------- /pkg/bin/stopvTiger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/stopvTiger.sh -------------------------------------------------------------------------------- /pkg/bin/uninstallvtiger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/bin/uninstallvtiger.sh -------------------------------------------------------------------------------- /pkg/license/License_linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/license/License_linux.txt -------------------------------------------------------------------------------- /pkg/license/License_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/license/License_windows.txt -------------------------------------------------------------------------------- /pkg/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/pkg/php/php.ini -------------------------------------------------------------------------------- /pkg/vtiger/modules/Mobile/modules/Mobile/third-party/qCal/VERSION: -------------------------------------------------------------------------------- 1 | qCal-v0.0.2 -------------------------------------------------------------------------------- /pkg/vtiger/modules/Mobile/templates/generic/Footer.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/vtiger/modules/Search/settings/templates/SideBar.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requestPasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/requestPasswordReset.php -------------------------------------------------------------------------------- /resources/Connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/resources/Connector.js -------------------------------------------------------------------------------- /resources/ProgressIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/resources/ProgressIndicator.js -------------------------------------------------------------------------------- /resources/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/resources/app.js -------------------------------------------------------------------------------- /resources/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/resources/helper.js -------------------------------------------------------------------------------- /resources/jquery.additions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/resources/jquery.additions.js -------------------------------------------------------------------------------- /resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/resources/styles.css -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /schema/DatabaseSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/schema/DatabaseSchema.sql -------------------------------------------------------------------------------- /shorturl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/shorturl.php -------------------------------------------------------------------------------- /soap/customerportal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/soap/customerportal.php -------------------------------------------------------------------------------- /soap/firefoxtoolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/soap/firefoxtoolbar.php -------------------------------------------------------------------------------- /soap/thunderbirdplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/soap/thunderbirdplugin.php -------------------------------------------------------------------------------- /soap/vtigerolservice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/soap/vtigerolservice.php -------------------------------------------------------------------------------- /soap/wordplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/soap/wordplugin.php -------------------------------------------------------------------------------- /storage/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/storage/.htaccess -------------------------------------------------------------------------------- /storage/vtiger.txt: -------------------------------------------------------------------------------- 1 | uploads 2 | -------------------------------------------------------------------------------- /swisspdf/createpng.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/swisspdf/createpng.php -------------------------------------------------------------------------------- /tabdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/tabdata.php -------------------------------------------------------------------------------- /test/logo/application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/application.ico -------------------------------------------------------------------------------- /test/logo/crm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/crm-logo.png -------------------------------------------------------------------------------- /test/logo/crm-now-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/crm-now-logo.jpg -------------------------------------------------------------------------------- /test/logo/crmnow_logo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/crmnow_logo_header.png -------------------------------------------------------------------------------- /test/logo/logo.txt: -------------------------------------------------------------------------------- 1 | Company logo 2 | -------------------------------------------------------------------------------- /test/logo/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/pointer.png -------------------------------------------------------------------------------- /test/logo/sale.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/sale.jpeg -------------------------------------------------------------------------------- /test/logo/start_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/start_main.jpg -------------------------------------------------------------------------------- /test/logo/vtiger-crm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/logo/vtiger-crm-logo.png -------------------------------------------------------------------------------- /test/migration/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/migration/css/style.css -------------------------------------------------------------------------------- /test/migration/images/help40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/migration/images/help40.png -------------------------------------------------------------------------------- /test/migration/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/migration/images/no.png -------------------------------------------------------------------------------- /test/migration/images/vt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/migration/images/vt1.png -------------------------------------------------------------------------------- /test/migration/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/migration/images/yes.png -------------------------------------------------------------------------------- /test/migration/js/jquery-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/migration/js/jquery-min.js -------------------------------------------------------------------------------- /test/test1.txt: -------------------------------------------------------------------------------- 1 | test1 -------------------------------------------------------------------------------- /test/vtlib/HTML/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/vtlib/HTML/README.txt -------------------------------------------------------------------------------- /test/vtlib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/test/vtlib/README.txt -------------------------------------------------------------------------------- /user_privileges/audit_trail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/user_privileges/audit_trail.php -------------------------------------------------------------------------------- /user_privileges/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/user_privileges/index.html -------------------------------------------------------------------------------- /vtigercron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtigercron.php -------------------------------------------------------------------------------- /vtigerservice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtigerservice.php -------------------------------------------------------------------------------- /vtigerversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtigerversion.php -------------------------------------------------------------------------------- /vtlib/README-UsingModuleDir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/README-UsingModuleDir.txt -------------------------------------------------------------------------------- /vtlib/Vtiger/Access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Access.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Block.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Cron.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Deprecated.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Event.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Feed/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Feed/Parser.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Field.php -------------------------------------------------------------------------------- /vtlib/Vtiger/FieldBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/FieldBasic.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Filter.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Functions.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Language.php -------------------------------------------------------------------------------- /vtlib/Vtiger/LanguageExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/LanguageExport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/LanguageImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/LanguageImport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Layout.php -------------------------------------------------------------------------------- /vtlib/Vtiger/LayoutExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/LayoutExport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/LayoutImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/LayoutImport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Link.php -------------------------------------------------------------------------------- /vtlib/Vtiger/LinkData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/LinkData.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Mailer.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Menu.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Module.php -------------------------------------------------------------------------------- /vtlib/Vtiger/ModuleBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/ModuleBasic.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Net/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Net/Client.php -------------------------------------------------------------------------------- /vtlib/Vtiger/PDF/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/PDF/Frame.php -------------------------------------------------------------------------------- /vtlib/Vtiger/PDF/TCPDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/PDF/TCPDF.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Package.php -------------------------------------------------------------------------------- /vtlib/Vtiger/PackageExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/PackageExport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/PackageImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/PackageImport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/PackageUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/PackageUpdate.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Profile.php -------------------------------------------------------------------------------- /vtlib/Vtiger/ThemeExport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/ThemeExport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/ThemeImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/ThemeImport.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Unzip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Unzip.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Utils.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Version.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Webservice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Webservice.php -------------------------------------------------------------------------------- /vtlib/Vtiger/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/Vtiger/Zip.php -------------------------------------------------------------------------------- /vtlib/thirdparty/dUnzip2.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/thirdparty/dUnzip2.inc.php -------------------------------------------------------------------------------- /vtlib/thirdparty/dZip.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/thirdparty/dZip.inc.php -------------------------------------------------------------------------------- /vtlib/tools/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/tools/console.php -------------------------------------------------------------------------------- /vtlib/vtlib-Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/vtlib/vtlib-Copyright.txt -------------------------------------------------------------------------------- /webservice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berliCRM/berlicrm/HEAD/webservice.php --------------------------------------------------------------------------------