当前位置: 首页>>代码示例>>PHP>>正文


PHP prado::getPathOfAlias方法代码示例

本文整理汇总了PHP中prado::getPathOfAlias方法的典型用法代码示例。如果您正苦于以下问题:PHP prado::getPathOfAlias方法的具体用法?PHP prado::getPathOfAlias怎么用?PHP prado::getPathOfAlias使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在prado的用法示例。


在下文中一共展示了prado::getPathOfAlias方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: dirname

<?php

/* 
 * CContextMenu class file
 *
 * @author Christophe Boulain <Christophe.Boulain@gmail.com>
 * @license http://www.pradosoft.com/license
 * @version $Id: CContextMenu.php 126 2009-03-11 07:24:26Z tof $
 */
if (!prado::getPathOfAlias('CContextMenu')) {
    prado::setPathOfAlias('CContextMenu', dirname(__FILE__));
}
/**
 * CContextMenu class
 *
 * This class is a Prado wrapper to 'Proto.Menu' written by 'kangax'
 *
 * Properties :
 *	o ForControl : Id of control on which attach the contextual menu.
 *	o CssSelector: a css selector to find the controls to attach the menu (e.g. CssSelector=".className").
 *  o CssUrl : an url to an alternate css file. By default, the proto.menu.0.6.css will be used
 *  o CssClass : Css class of the menu (default to "menu desktop". See proto.menu.css for info)
 *  o Items : a collection of CContextMenuItem.
 *
 * If theses two properties are present, ForControl takes precedence.
 *
 * Events :
 *  o OnMenuItemSelected event is raised when a menu item is clicked. The event parameter contains the index of the clicked element, and its command name.
 *
 * Items Properties :
 *	o Text : Text of menu item
开发者ID:quantrocket,项目名称:planlogiq,代码行数:31,代码来源:CContextMenu.php

示例2: getPath

 /**
  *
  * Mendapatkan Path
  *
  */
 public function getPath($path = null)
 {
     $_path = prado::getPathOfAlias('Application') . DIRECTORY_SEPARATOR;
     if ($path === null) {
         return $path = $_path;
     } else {
         return $_path . $path . DIRECTORY_SEPARATOR;
     }
 }
开发者ID:silotester,项目名称:silo,代码行数:14,代码来源:Logic_Global.php


注:本文中的prado::getPathOfAlias方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。