글쓰기시 10포인트를 얻는다면

 

이 게시판에 글을 쓰시면 +10포인트 획득 이라고 출력하고싶은데요.

 

설정된 10 이라는 숫자를 게시판 페이지에서 출력 할 수 있는 코드가 있을까요?

 

감사합니다.

  • profile

    혹시 이거 해보셨나요?
    {@
        $oModuleModel = getModel('module');
        $module_config = $oModuleModel->getModulePartConfig('point', $module_info->module_srl);
    }
    <pre>{print_r($module_config, true)}</pre>

     

    해보니까, 저는 결과값이 이렇게 나오는군요 :)

    Array
    (
        [insert_document] => 10
        [insert_comment] => 5
        [upload_file] => 5
        [download_file] => -5
        [read_document] => 0
        [voted] => 0
        [blamed] => 0
        [voted_comment] => 0
        [blamed_comment] => 0
    )

     

    따라서 글쓰기 획득 포인트는 $module_config->insert_document가 되겠네요

  • profile profile
    올 윤삼님 너무나 멋집니다!!! 감사해요 바로 해보고 올게요
  • profile profile
    {@
    $oModuleModel = getModel('module');
    $module_config = $oModuleModel->getModulePartConfig('point', $module_info->module_srl);
    }

    {$module_config->insert_document}

    이상하게 저는 이렇게 해봣는데 아무것도 안나오네요~
  • profile
    아 ㅎㅎㅎ 이거 게시판별 포인트 지정된곳가서 확인 한번 눌러줘야되네요.
  • profile profile
    아근데
    (
    [insert_document] => 10
    [insert_comment] => 5
    [upload_file] => 5
    [download_file] => -5
    [read_document] => 0
    [voted] => 0
    [blamed] => 0
    [voted_comment] => 0
    [blamed_comment] => 0
    )
    이건 저도 나오는데

    {$module_config->insert_comment}

    로해도 아무것도 안나오는데 어찌하면 출력이 될까요?
  • profile profile
    앗, 죄송해요;;;
    {$module_config['insert_comment']}
    로 해보세요
  • profile profile
    잘됩니다 감사합니다. ㅎㅎ