本文整理汇总了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="» 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;
default:
$value = ' ';
}
if ($key == 'ID' || $key == 'Name') {
$value = $detail_link . $value . '</a>';