Пример #1
0
    // echo $this->renderSubclasses($class);
    ?>
</td>
  </tr>
  <?php 
}
?>

  <?php 
if (!empty($class->version)) {
    ?>
  <tr>
    <th nowrap="nowrap">版本</th>
    <td><?php 
    echo $class->version;
    ?>
</td>
  </tr>
  <?php 
}
?>

</table>

<div class="formatted">
  <?php 
echo Command_API::formatting($class->description);
?>
</div>

Пример #2
0
        echo '{return}';
        ?>
</td>
      <td class="param_type"><?php 
        echo h($method->return_type);
        ?>
</td>
      <td class="param_desc"><?php 
        echo h($method->return_comment);
        ?>
</td>
    </tr>
    <?php 
    }
    ?>

  </table>

  <div class="formatted">
    <?php 
    echo Command_API::formatting($method->description);
    ?>
  </div>

  <?php 
}
?>

</div>

Пример #3
0
    $i = 0;
    $classes = $package->classes;
    ksort($classes);
    foreach ($classes as $i => $class) {
        $i++;
        ?>
      <tr>
        <?php 
        if ($i == 1) {
            ?>
        <td rowspan="<?php 
            echo count($package->classes);
            ?>
" valign="top" class="formatted package-description">
          <?php 
            echo Command_API::formatting($package->description);
            ?>
        </td>

        <?php 
        }
        ?>

        <td valign="top">
          <p class="class-name">
            <a href="<?php 
        echo Command_API::classUrl($class, $class_url);
        ?>
"><?php 
        echo h($class->name);
        ?>
Пример #4
0
    echo h($property->name);
    ?>
"></a>

  <div class="name property">
    $<?php 
    echo h($property->name);
    ?>

    <span class="tags">属性</span>
  </div>

  <div class="signature">
    <?php 
    // echo $this->renderPropertySignature($property);
    ?>
  </div>

  <div class="formatted">
    <?php 
    echo Command_API::formatting($property->description);
    ?>
  </div>

  <?php 
}
?>

</div>