當前位置: 首頁>>代碼示例>>PHP>>正文


PHP design::isReadyForDone方法代碼示例

本文整理匯總了PHP中design::isReadyForDone方法的典型用法代碼示例。如果您正苦於以下問題:PHP design::isReadyForDone方法的具體用法?PHP design::isReadyForDone怎麽用?PHP design::isReadyForDone使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在design的用法示例。


在下文中一共展示了design::isReadyForDone方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: elseif

             }
             //                    } elseif($design->status==6) {
             //                        $photos_is_complete = $design->isPhotoProductComplete();
             //                        if($photos_is_complete) $actions[] = '<input type="button" name="12" class="green" value="&raquo; PRODUCT QC" title="Move Design to Product QC Tab" />';
             //                        $actions[] = '<input type="button" name="5" class="red" value="&laquo; SAMPLING" title="Move Design back to Samplings Tab" />';
         } elseif ($design->status == 12) {
             $actions[] = '<input type="button" name="7" class="green" value="&raquo; DETAIL" title="Move Design to Details Tab" />';
             $actions[] = '<input type="button" name="14-1" class="red" value="&laquo; GRAPHIC" title="Move Design back to Graphics Tab" />';
             $actions[] = '<input type="button" name="5-0" class="red" value="&laquo; SAMPLING" title="Move Design back to Samplings Tab" />';
         } elseif ($design->status == 7) {
             if ($design->isReadyForFinalize()) {
                 $actions[] = '<input type="button" name="8" class="green" value="&raquo; FINALIZE" title="Move Design to Finalize Tab" />';
             }
             $actions[] = '<input type="button" name="12" class="red" value="&laquo; PRODUCT QC" title="Move Design back to Product QC Tab" />';
         } elseif ($design->status == 8) {
             if ($design->isReadyForDone()) {
                 $actions[] = '<input type="button" name="9" class="green" value="&raquo; DONE" title="Activate All Products and Remove Design from Finalize Tab" />';
             }
             $actions[] = '<input type="button" name="7" class="red" value="&laquo; DETAIL" title="Move Design back to Details Tab" />';
             $actions[] = '<input type="button" name="14-1" class="red" value="&laquo; GRAPHIC" title="Move Design back to Graphic Tab" />';
         }
         if ($design->status <= 5 || $design->status == 10) {
             $actions[] = '<input type="button" name="0" class="red" value="&times; DELETE" title="Delete Design Permanently" />';
         }
         $value .= implode('<br />', $actions);
         break;
     default:
         $value = '&nbsp;';
 }
 if ($key == 'ID' || $key == 'Name') {
     $value = $detail_link . $value . '</a>';
開發者ID:blasiuscosa,項目名稱:manobo-2008,代碼行數:31,代碼來源:designs-manage.php


注:本文中的design::isReadyForDone方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。