本文整理匯總了PHP中design::isReadyForWaxNewElements方法的典型用法代碼示例。如果您正苦於以下問題:PHP design::isReadyForWaxNewElements方法的具體用法?PHP design::isReadyForWaxNewElements怎麽用?PHP design::isReadyForWaxNewElements使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類design
的用法示例。
在下文中一共展示了design::isReadyForWaxNewElements方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: elseif
if ($design->isReadyForSamplings()) {
$actions[] = $design->category == 'R' ? '<input type="button" name="5-0" class="green" value="» SAMPLING" title="Move Design to Samplings Tab" />' : '<input type="button" name="10-1" class="green" value="» NEW ELEMENT" title="Move Design to New Elements Tab" />';
}
$actions[] = '<input type="button" name="3" class="red" value="« DRAFT" title="Move Design back to Drafts Tab" />';
} elseif ($design->status == 10) {
if ($have_drafts) {
$edit_drafts = '<input type="button" name="D" class="red" value="≡ EDIT DRAFTS" title="Manage Design Drafts" />';
}
if ($sub_status == 0) {
if ($design->isReadyForPhotoNewElements()) {
$actions[] = '<input type="button" name="10-6" class="green" value="» PHOTO" title="Move Design to Photo Tab" />';
}
$actions[] = $edit_drafts;
$actions[] = '<input type="button" name="11" class="red" value="« PULL RACK" title="Move Design back to Pull Rack Tab" />';
} elseif ($sub_status == 1) {
if ($design->isReadyForWaxNewElements()) {
$actions[] = '<input type="button" name="10-2" class="green" value="» WAX" title="Move Design to Wax Tab" />';
}
if ($design->isReadyForWaxNewElements()) {
$actions[] = '<input type="button" name="10-3" class="green" value="» MASTER" title="Move Design to Master Tab" />';
}
$actions[] = $edit_drafts;
$actions[] = '<input type="button" name="4" class="red" value="« APPROVAL" title="Move Design to Approvals Tab" />';
} elseif ($sub_status == 2) {
// if($have_elements == true && $wax_done == true) $actions[] = '<input type="button" name="10-4" class="green" value="» RUBBER" title="Move Design to Rubber Tab" />';
// if($have_elements == true && $wax_done == true) $actions[] = '<input type="button" name="10-3" class="green" value="» MASTER" title="Move Design to Master Tab" />';
if ($have_elements == true && $wax_done == true) {
$actions[] = '<input type="button" name="10-8" class="green" value="» CASTING MASTER" title="Move Design to Casting Master Tab" />';
}
$actions[] = $edit_drafts;
$actions[] = '<input type="button" name="10-1" class="red" value="« CREATE" title="Move Design to Create Tab" />';