本文整理汇总了PHP中Setup::store方法的典型用法代码示例。如果您正苦于以下问题:PHP Setup::store方法的具体用法?PHP Setup::store怎么用?PHP Setup::store使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Setup
的用法示例。
在下文中一共展示了Setup::store方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dirname
* FireOpal is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with FireOpal. If not, see <http://www.gnu.org/licenses/>.
*/
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . dirname(__DIR__) . DIRECTORY_SEPARATOR . 'include');
require_once 'Setup.class.php';
if (!isset($_SESSION)) {
session_start();
}
$setup = new Setup();
if (!empty($_REQUEST)) {
$setup->store($_REQUEST);
$setup->storeInDB($_SESSION['sess_idUser'], $_REQUEST);
if (isset($_REQUEST['delete']) && !empty($_REQUEST['delete'])) {
$setup->deleteFromDB($_SESSION['sess_idUser'], $_REQUEST['delete']);
$setup->delete($_REQUEST['delete']);
}
}
$content = $setup->display();
$form = $content['form'];
// $form = $setup->displayUserConf($_SESSION['sess_idUser']);
$info = "";
if (!empty($content['info'])) {
$info = '<ul class="feedback_info" >';
foreach ($content['info'] as $message) {
$info .= "<li>" . $message . "</li>";
}