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


PHP Documento::ObtenerEstadoCopia方法代碼示例

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


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

示例1: RegistraListado


//.........這裏部分代碼省略.........
                            echo $row_reg['id'];
                            ?>
)" id="desarchivar">
			    <?php 
                            echo $row_reg['estado'];
                            ?>
			  </a>
		        <?php 
                        } elseif ($estado == 12) {
                            ?>
			  <a href="javascript:QuitarFinalizar(<?php 
                            echo $row_reg['id'];
                            ?>
)" id="nofinalizar">
			  	<?php 
                            echo $row_reg['estado'];
                            ?>
			  </a>
		        <?php 
                        } else {
                            ?>
				
			     <input type="text" value="<?php 
                            echo $row_reg['estado'];
                            ?>
" size="3" style="text-align:center; width:100%"/>
		        <?php 
                        }
                        ?>
				    
			<?php 
                    } else {
                        $doc = new Documento();
                        $estado = $doc->ObtenerEstadoCopia($ids, 1);
                        ?>
				
				<input type="text" value="<?php 
                        echo $estado;
                        ?>
" size="3" style="text-align:center; width:100%"/>
			<?php 
                    }
                    ?>
			</div>
			</td>
		<td align="center" width="4%">
			<div align="center">
			<input type="text" value="<?php 
                    echo $row_reg['categoria'] == '1' ? 'O' : 'C';
                    ?>
" style=" width:20PX; text-align:center"/>
			</div>		</td>

      <?php 
                    $sql_data = " SELECT a.abve_nombre_area\r\n\t\t\t\t\tFROM\r\n\t\t\t\t\tareas AS a \r\n\t\t\t\t\tWHERE\r\n\t\t\t\t\ta.id_area = '" . $_SESSION['session'][5] . "' ";
                    $query_data = new Consulta($sql_data);
                    $data = $query_data->ConsultaVerRegistro();
                    ?>
      <td>
	 <?php 
                    if ($row_reg['categoria'] != 1) {
                        $doc = new Documento();
                        $ubic = $doc->ObtenerUbicacionCopia($ids, 1);
                        $area = $data['abve_nombre_area'];
                        $tooltip_ubic = "";
                        if (count($ubic) > 0) {
開發者ID:electromanlord,項目名稱:sgd,代碼行數:67,代碼來源:areas_acceso_registro.cls.php

示例2: listado


//.........這裏部分代碼省略.........
                            echo $row_reg['id'];
                            ?>
)" id="desarchivar">
                            <?php 
                            echo $row_reg['estado'];
                            ?>
                          </a>
                            <?php 
                        } elseif ($estado == 12) {
                            ?>
                          <a href="javascript:QuitarFinalizar(<?php 
                            echo $row_reg['id'];
                            ?>
)" id="nofinalizar">
                            <?php 
                            echo $row_reg['estado'];
                            ?>
                          </a>
                            <?php 
                        } else {
                            ?>
				
                             <input type="text" value="<?php 
                            echo $row_reg['estado'];
                            ?>
" size="3" style="text-align:center; width:100%"/>
                            <?php 
                        }
                        ?>
				    
                        <?php 
                    } else {
                        $doc = new Documento();
                        $estado = $doc->ObtenerEstadoCopia($ids, 1);
                        ?>
				
                            <input type="text" value="<?php 
                        echo $estado;
                        ?>
" size="3" style="text-align:center; width:100%"/>
                        <?php 
                    }
                    ?>
                        </div>
                        </td>
                    <?php 
                    if ($dias) {
                        ?>
                        <td align="center" width="4%">
                            <input type="text" value="<?php 
                        echo $dias_faltantes;
                        ?>
" style="text-align:center;width:30px;" />		
                        </td>
                    <?php 
                    } else {
                        ?>
                        <td align="center" width="4%">
                            <div align="center">
                            <input type="text" value="<?php 
                        echo $row_reg['categoria'] == '1' ? 'O' : 'C';
                        ?>
" style=" width:20PX; text-align:center"/>
                            </div>		
                        </td>
                    <?php 
開發者ID:electromanlord,項目名稱:sgd,代碼行數:67,代碼來源:atencion.cls.php


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