本文整理匯總了PHP中design::isReadyForFinalize方法的典型用法代碼示例。如果您正苦於以下問題:PHP design::isReadyForFinalize方法的具體用法?PHP design::isReadyForFinalize怎麽用?PHP design::isReadyForFinalize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類design
的用法示例。
在下文中一共展示了design::isReadyForFinalize方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: elseif
$photos_is_complete = $design->isPhotoProductComplete();
if ($photos_is_complete) {
$actions[] = '<input type="button" name="12" class="green" value="» PRODUCT QC" title="Move Design to Product QC Tab" />';
}
$actions[] = '<input type="button" name="5-0" class="red" value="« SAMPLING" title="Move Design back to Samplings Tab" />';
}
// } elseif($design->status==6) {
// $photos_is_complete = $design->isPhotoProductComplete();
// if($photos_is_complete) $actions[] = '<input type="button" name="12" class="green" value="» PRODUCT QC" title="Move Design to Product QC Tab" />';
// $actions[] = '<input type="button" name="5" class="red" value="« SAMPLING" title="Move Design back to Samplings Tab" />';
} elseif ($design->status == 12) {
$actions[] = '<input type="button" name="7" class="green" value="» DETAIL" title="Move Design to Details Tab" />';
$actions[] = '<input type="button" name="14-1" class="red" value="« GRAPHIC" title="Move Design back to Graphics Tab" />';
$actions[] = '<input type="button" name="5-0" class="red" value="« SAMPLING" title="Move Design back to Samplings Tab" />';
} elseif ($design->status == 7) {
if ($design->isReadyForFinalize()) {
$actions[] = '<input type="button" name="8" class="green" value="» FINALIZE" title="Move Design to Finalize Tab" />';
}
$actions[] = '<input type="button" name="12" class="red" value="« 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="» DONE" title="Activate All Products and Remove Design from Finalize Tab" />';
}
$actions[] = '<input type="button" name="7" class="red" value="« DETAIL" title="Move Design back to Details Tab" />';
$actions[] = '<input type="button" name="14-1" class="red" value="« GRAPHIC" title="Move Design back to Graphic Tab" />';
}
if ($design->status <= 5 || $design->status == 10) {
$actions[] = '<input type="button" name="0" class="red" value="× DELETE" title="Delete Design Permanently" />';
}
$value .= implode('<br />', $actions);
break;