ccm-cms-assets-dublincore auskommentiert aus ccm-bundle/devel-bundle

git-svn-id: https://svn.libreccm.org/ccm/trunk@2316 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2013-09-12 10:05:26 +00:00
parent e697a6278a
commit eba04df78f
3 changed files with 4 additions and 3 deletions

View File

@ -70,7 +70,7 @@
<ccm:application name="ccm-cms-assets-fileattachment"/>
<ccm:application name="ccm-cms-assets-notes"/>
-->
<ccm:application name="ccm-cms-assets-dublincore"/>
<!-- <ccm:application name="ccm-cms-assets-dublincore"/> -->
<!-- Content Types -->
<ccm:application name="ccm-cms-types-bookmark"/>

View File

@ -21,6 +21,7 @@ import com.arsdigita.runtime.AbstractConfig;
import com.arsdigita.util.parameter.Parameter;
import com.arsdigita.util.parameter.StringParameter;
import com.arsdigita.util.parameter.BooleanParameter;
import com.arsdigita.util.parameter.IntegerParameter;
import org.apache.log4j.Logger;
@ -101,7 +102,7 @@ public class DublinCoreConfig extends AbstractConfig {
private Parameter m_assetStepSortKey =
new IntegerParameter(
"com.arsdigita.cms.contentassets.dublincore.asset_step_sortkey",
Parameter.Optional,
Parameter.OPTIONAL,
3);
/**

View File

@ -87,6 +87,6 @@ public class DublinCoreInitializer extends ContentAssetInitializer {
* The sort key for the authoring step
*/
public int getAuthoringStepSortKey() {
return DublinCoreInstance.instanceOf().getAssetStepSortKey();
return DublinCoreConfig.instanceOf().getAssetStepSortKey();
}
}