/// <summary>
        /// Gets the property values that will be sent to the block.
        /// </summary>
        /// <param name="clientType"></param>
        /// <returns>
        /// A collection of string/object pairs.
        /// </returns>
        public override object GetBlockInitialization(RockClientType clientType)
        {
            if (clientType == RockClientType.Web)
            {
                return(GetObsidianBlockInitialization());
            }

            return(null);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Gets the property values that will be sent to the block.
        /// </summary>
        /// <returns>A collection of string/object pairs.</returns>
        public override object GetBlockInitialization(RockClientType clientType)
        {
            if (clientType == RockClientType.Mobile)
            {
                return(GetMobileConfigurationValues());
            }

            return(null);
        }
Exemplo n.º 3
0
 /// <inheritdoc/>
 public abstract object GetBlockInitialization(RockClientType clientType);