search
HomeBackend DevelopmentPHP TutorialopenPNE common methods sharing_PHP tutorial
openPNE common methods sharing_PHP tutorialJul 21, 2016 pm 03:22 PM
arrayincludephpcodesharecopyCommonly usedmethod

Copy code The code is as follows:

'asdfgasgsad'));?>This sentence means to include '_sidemenu.php' and pass it to its page For series parameters, the '_sidemenu.php' page can directly use the value in the $form variable
op_include_box('vote_question_create_box','asdfasdf',array(' title'=>'Create question','moreInfo'=>array('Create question',link_to('Create question 2','@my_index'))));
?>
< ;?php
op_include_box('vote_question_create_box',get_slot('pager'),array('title'=>'Create question','moreInfo'=>array('Create question',link_to('Create question 2','@my_index'))));
?>
'vote_question_create_box' is just a mark, 'asdfasdf' or get_slot('pager') is to be output Go to the information under the title on the page (to include slot in this method, you can only use get_slot(), not include_slot(),
And to include slot in the page, you must use include_slot())
The third array The key name title in the parameter is fixed and is the title displayed by the 'vote_question_create_box' section. The 'moreInfo' key name that follows is also a fixed key value and the array corresponding to the fixed key value is a list of displayed content

Set a slot paragraph


php include_slot('pager'); ?>Includes the specified slot paragraph. The set slot paragraph must be included to be displayed on the page

op_include_form('vote_question_from',$ form,array('title'=>'Edit question','url'=>url_for('@vote_update?id='.$form->getObject()->getId()),));
?> Contains a form object, 'vote_question_from' is the identification name, $form is the form object passed by the corresponding action, and the third array parameter title key value and url key value are fixed, corresponding to the displayed title. The corresponding action content of the name and form submission path
is
public function executeEdit(sfWebRequest $request){
$object = $this->getRoute()->getObject() ;
//If it is not the author, 404 is displayed on the screen
$this->forward404Unless($this->getUser()->getMemberId() == $object->getMemberId());/ /$object->getMemberId() is the member_id field value of the record corresponding to the passed id value
$this->form = new VoteQuestionForm($object);
//Access this action path http://localhost/openpne/web/vote/edit/1
}
?>

Hyperlink used to page forward and backward during paging
$pager comes from $this->pager in the action = Doctrine::getTable('VoteQuestion')->getListPager($request->getParameter ('page'));
Contents in the getListPager() method of class PluginVoteQuestionTable↓
class PluginVoteQuestionTable extends Doctrine_Table
{
public function getListPager($page = 1, $size = 20)
{
$query = $this->createQuery()->orderBy('updated_at DESC');
$pager = new sfDoctrinePager('VoteQuestion',$size) ;//Create a paging object for a certain table and pass a value of how many records are displayed on each page
$pager->setQuery($query);//Pass a query statement object
$pager->setPage ($page);//Suppose the number of displayed pages is returned
$pager->init();
return $pager;
}
}
?>
Corresponds to the foreground page's perusal of the paging result set
getResults() as $item): //Use the openPNE paging mechanism to obtain the specified paging The result set is read through each record?>

getUpdatedAt(),'f') //'f' Represents a display format?>

< ;dd>getTitle(),count($item->getVoteAnswers())),'@vote_show?id=' .$item->getId()) ?>
> ;


getId()) ?> Equivalent to sdsfg
The table name is camel case and underlined in the database, and the same is true for the field name

Link
Even if you don’t use the method, you can directly write the web/post ==== module name/action name ==== or the path behind the web set in the route in action="."


$this->tasksObject in action = $this->getRoute()->getObject();
$this->getRoute()->getObject(); //Get the information object in the table corresponding to the passed id parameter value. You can get the field value through get+field name(), such as $tasksObject-getId() on the page;
As for how to determine which one is obtained The table is determined when setting the action route through the routing class. The following example determines the vote_question table
Example
class opVotePluginFrontendRouteCollection extends sfRouteCollection
{
public function __construct( array $options)
{
parent::__construct($options);
$this->routes = array(
'vote_edit' => new sfDoctrineRoute(
'/vote /edit/:id',
array('module' => 'vote', 'action' => 'edit'),
array('id' => 'd+', 'sf_method ' => array('get')),
array('model' => 'VoteQuestion', 'type' => 'object')
),
);
}
}
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/324727.htmlTechArticleCopy the code as follows: ?php include_partial('sidemenu',array('form'='asdfgasgsad')) ;?This sentence means to include '_sidemenu.php' and pass a series of parameters to its page, the '_sidemenu.php' page...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
基于Java的机器视觉实践和方法介绍基于Java的机器视觉实践和方法介绍Jun 18, 2023 am 11:21 AM

随着科技的不断发展,机器视觉技术在各个领域得到了广泛应用,如工业自动化、医疗诊断、安防监控等。Java作为一种流行的编程语言,其在机器视觉领域也有着重要的应用。本文将介绍基于Java的机器视觉实践和相关方法。一、Java在机器视觉中的应用Java作为一种跨平台的编程语言,具有跨操作系统、易于维护、高度可扩展等优点,对于机器视觉的应用具有一定的优越性。Java

Go 语言中的方法是怎样定义和使用的?Go 语言中的方法是怎样定义和使用的?Jun 10, 2023 am 08:16 AM

Go语言是近年来备受青睐的编程语言,因其简洁、高效、并发等特点而备受开发者喜爱。其中,方法(Method)也是Go语言中非常重要的概念。接下来,本文就将详细介绍Go语言中方法的定义和使用。一、方法的定义Go语言中的方法是带有接收器(Receiver)的函数,它是一个与某个类型绑定的函数。接收器可以是值类型或者指针类型。用于接收者的参数可以在方法名

PHP文件下载方法及常见问题解答PHP文件下载方法及常见问题解答Jun 09, 2023 pm 12:37 PM

PHP是一个广泛使用的服务器端编程语言,它的许多功能和特性可以将其用于各种任务,包括文件下载。在本文中,我们将了解如何使用PHP创建文件下载脚本,并解决文件下载过程中可能出现的常见问题。一、文件下载方法要在PHP中下载文件,我们需要创建一个PHP脚本。让我们看一下如何实现这一点。创建下载文件的链接通过HTML或PHP在页面上创建一个链接,让用户能够下载文件。

学习canvas框架 详解常用的canvas框架学习canvas框架 详解常用的canvas框架Jan 17, 2024 am 11:03 AM

探索Canvas框架:了解常用的Canvas框架有哪些,需要具体代码示例引言:Canvas是HTML5中提供的一个绘图API,通过它我们可以实现丰富的图形和动画效果。为了提高绘图的效率和便捷性,许多开发者开发了不同的Canvas框架。本文将介绍一些常用的Canvas框架,并提供具体代码示例,以帮助读者更深入地了解这些框架的使用方法。一、EaselJS框架Ea

Vue 中的 createApp 方法是什么?Vue 中的 createApp 方法是什么?Jun 11, 2023 am 11:25 AM

随着前端开发的快速发展,越来越多的框架被用来构建复杂的Web应用程序。Vue.js是流行的前端框架之一,它提供了许多功能和工具来简化开发人员构建高质量的Web应用程序。createApp()方法是Vue.js中的一个核心方法之一,它提供了一种简单的方式来创建Vue实例和应用程序。本文将深入探讨Vue中createApp方法的作用,其如何使用以及使用时需要了解

Spring注解大揭秘:常用注解解析Spring注解大揭秘:常用注解解析Dec 30, 2023 am 11:28 AM

Spring是一个开源框架,提供了许多注解来简化和增强Java开发。本文将详细解释常用的Spring注解,并提供具体的代码示例。@Autowired:自动装配@Autowired注解可以用于自动装配Spring容器中的Bean。当我们在需要依赖的地方使用@Autowired注解时,Spring将会在容器中查找匹配的Bean并自动注入。示例代码如下:@Auto

15个常用的币圈逃顶指标技术分析15个常用的币圈逃顶指标技术分析Mar 03, 2025 pm 05:48 PM

十五大比特币逃顶指标深度解析:2025年市场展望本文深入分析了十五个常用的比特币逃顶指标,其中比特币Rhodl比率、USDT活期理财和山寨币季节指数已于2024年触及逃顶区间,引发市场关注。面对潜在风险,投资者该如何应对?让我们逐一解读这些指标,并探讨合理的应对策略。一、关键指标详解AHR999囤币指标:由ahr999创建,辅助比特币定投策略。当前值为1.21,处于观望区间,建议谨慎。链接AHR999逃顶指标:AHR999囤币指标的补充,用于识别市场顶部。当前值为2.48,本周

PHP API开发的最佳实践方法PHP API开发的最佳实践方法Jun 17, 2023 pm 05:09 PM

随着互联网的发展,越来越多的应用程序需要对外暴露API接口,而PHP作为一种流行的服务器端脚本语言,自然不例外。然而,未经过良好设计和编写的API接口可能会导致安全性问题、性能瓶颈、功能不完整等问题。因此,在PHPAPI开发中,需要遵循一些最佳实践方法,以确保API的质量和可靠性。本文将介绍几个PHPAPI开发的最佳实践方法。1.好的URI设计URI(

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.